body {
    background-color: hsl(257, 40%, 49%);
    color: white;
    background-image: url('../../src/images/bg-desktop.svg');
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    flex-direction: column;
  }
  
  .header {
    margin-bottom: 2rem;
  }
  
  .logo {
    height: 40px;
  }
  
  .main {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex: 1;
  }
  
  .maquete img {
    width: 100%;
    max-width: 600px;
  }
  
  .info {
    max-width: 500px;
  }
  
  .info h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .info p {
    margin-bottom: 2rem;
  }
  
  .btn-registro {
    background-color: white;
    color: hsl(257, 40%, 49%);
    padding: 0.8rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .btn-registro:hover {
    background-color: hsl(300, 69%, 71%);
    color: white;
  }
  
  .footer {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding-top: 2rem;
  }
  
  .social-icons a {
    color: white;
    border: 1px solid white;
    border-radius: 50%;
    padding: 0.5rem;
    width: 35px;
    height: 35px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }
  
  .social-icons a:hover {
    background-color: hsl(300, 69%, 71%);
    color: white;
    border-color: hsl(300, 69%, 71%);
  }
  