:root {
    --rosa-1: #bf7e8a;
    --rosa-2: #f25c84;
    --rosa-3: #a75f89;

}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--rosa-3);
}
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    text-transform: uppercase;
}
p, label, input, textarea {
    font-weight: 400; /* Texto normal */
  }
  
section {
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 4%;
}
/* Estilo base para o nav */
nav {
    background-color: var(--rosa-3);
    padding: 20px 4%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.menu {
    display: flex;
    gap: 20px;
}

.menu a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

/* Botão hambúrguer */
.menu-toggle {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Menu lateral para mobile */
.side-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    background-color: var(--rosa-3);
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: left 0.3s ease;
    z-index: 1001;
}

.side-menu a {
    color: white;
    font-size: 18px;
    text-decoration: none;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1000;
}

/* Ativação do menu e overlay */
.side-menu.active {
    left: 0;
}

.overlay.active {
    display: block;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}



footer {
    display: flex;
    flex-direction: column;
    padding: 20px 4%;
    text-align: center;
    color: white;
}
.cta {
    background-color: rgb(59, 239, 59);
    padding: 10px 4%;
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px auto;
    border-radius: 15px;

}
a {
    text-decoration: none;
    color: white;
}
.hero {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)), url(./assets/hero-angela-modas.webp);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 75vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: white;
}
.hero-bg {
    flex: 1;
}
.hero-text {
    flex: 1;
    gap: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: left;
}
.hero-text .cta {
    max-width: 500px;
    font-size: 24px;
    text-align: center;
    justify-content: center;
    margin: 20px 0;
}
.hero h1 {
    font-size: 42px;
    display: flex;
    
}
.hero h2 {
    font-size: 38px;
}



.sobre {
    display: flex;
    flex-direction: row;
    color: white;
    background-color: #010101;
}
.sobre-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}
.sobre-text h2 {
    font-size: 35px;
}
.sobre-text p {
    font-size: 28px;
}
.sobre-img img {
    border-radius: 15px;
    box-shadow: 5px 5px 15px 5px #a75f89;
}


section.services {
    background-color: white;
}
section.diferencial {
    color: white;
    background-color: #010101;
}
.services, .diferencial {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.services h2, .diferencial h2 {
    font-size: 35px;
}
.services p {
    font-size: 25px;
}
.service-items, .diferenciais {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
}
.service, .diferencial-item {
    width: 300px;
    height: 300px;
    box-shadow: 4px 4px 10px #a75f89;
    background-color: #c05d97;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 10px 3%;
    gap: 1rem;
}
.service h3 {
    font-size: 25px;
}
.service p {
    font-size: 20px;
}



.faq {
    background-color: #f9f9f9;
    padding: 60px 4%;
    font-family: 'Poppins', sans-serif;
  }
  
  .faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
  }
  
  .faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
  }
  
  .faq-question {
    background-color: transparent;
    border: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px;
    cursor: pointer;
    color: #444;
    transition: 0.3s;
  }
  
  .faq-question:hover {
    color: #b8005c;
  }
  
  .faq-question .arrow {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
  }
  
  .faq-question.active .arrow {
    transform: rotate(180deg);
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #fff;
    padding: 0 15px;
  }
  
  .faq-answer p {
    margin: 10px 0;
    color: #666;
    line-height: 1.6;
  }
    




.contato {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)), url(./assets/hero-angela-modas.webp);
    background-size: cover;
    background-attachment: fixed;
    background-color: #fefefe;
    padding: 50px 5%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
  }
  
  .container-contato {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }
  
  .info-local,
  .formulario-contato {
    flex: 1 1 400px;
    background-color: #fff8f3;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 0 12px rgba(0,0,0,0.08);
  }
  
  .info-local h2,
  .formulario-contato h2 {
    color: #c27ba0;
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .formulario {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  
  .form-item label {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
  }
  
  .form-item input,
  .form-item textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d8cfcf;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #fff;
    resize: none;
  }
  
  .form-item input:focus,
  .form-item textarea:focus {
    outline: none;
    border-color: #c27ba0;
    box-shadow: 0 0 0 2px #f3d6e0;
  }
  
  button[type="submit"] {
    background-color: #c27ba0;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  button[type="submit"]:hover {
    background-color: #a75f89;
  }

  .redes-sociais {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 20px 4%;
}

.redes-sociais a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.redes-sociais img {
    width: 42px;
    height: 42px;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1); /* transforma em branco */
}

/* WhatsApp hover */
.redes-sociais a:nth-child(1):hover {
    background-color: #1d1d1d; /* verde suave */
    transform: scale(1.1);
}

/* Instagram hover */
.redes-sociais a:nth-child(2):hover {
    background-color: #1d1d1d; /* rosa suave */
    transform: scale(1.1);
}

.redes-sociais a:hover img {
    transform: scale(1.2);
}

#btnWhatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  #btnWhatsapp:hover {
    transform: scale(1.1);
    background-color: #1ebe5d;
  }
  
  #btnWhatsapp img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1); /* deixa o ícone branco */
  }
  



@media screen and (max-width: 1020px) {
    
    .hero {
        padding: 10px 4%;
        width: 100%;
    }
    .hero-text {
        padding: 0;
        width: 100%;
    }
    .hero-text h1 {
        font-size: 32px;
    }
    .hero-text h2 {
        font-size: 20px;
    }
    .hero-bg {
        display: none;
    }

    .sobre {
        display: flex;
        flex-direction: column;
        
        padding: 10px 4%;
    }
    .sobre-text {
        width: 100%;
    }
    
    .sobre-img {
        max-width: 1020px;
        padding: 10px 4%;
    }
    .sobre-img img {
        width: 100%;
    }

    
}