/*
  PALETA DE CORES - Sereia Agency
  - Cor Primária (Roxo/Botões/Destaque Forte): #CD7AE6
  - Cor Secundária (Rosa/Ícones/Detalhes): #FDA4DC
  - Cor de Fundo Neon (Roxo Claro para seções): #EAD1FF
  - Fundo Claro (Quase Branco com toque Rosado): #FAF6FB
  - Cor de Texto Escuro: #2b2b2b
  - Cor de Texto Claro: #ffffff
  - Hovers (Versões mais escuras das cores principais)
*/

:root {
    --primary-color: #CD7AE6;
    /* Roxo principal para botões e destaques fortes */
    --primary-hover: #A85DBD;
    /* Hover do Roxo */
    --secondary-color: #FDA4DC;
    /* Rosa vibrante para ícones e detalhes */
    --secondary-hover: #D883B8;
    /* Hover do Rosa */
    --accent-color: #EAD1FF;
    /* Roxo claro para fundos de seção (estilo neon) */
    --background-light: #FAF6FB;
    /* Fundo claro com leve toque rosado */
    --text-dark: #2b2b2b;
    --text-light: #ffffff;
    --whatsapp-green: #25D366;
    --whatsapp-hover: #128C7E;
    --font-family: "Montserrat", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: var(--font-family);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: #ffffff;
    color: var(--text-dark);
    font-size: 16px;
    position: relative;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    height: 90px;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    z-index: 1000;
    background-color: var(--accent-color);
    /* Fundo roxo claro neon */
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--secondary-color);
    /* Linha neon rosa abaixo do header */
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    width: 80px;
    padding-left: 1px;
    height: auto;
    transition: transform 0.3s ease;
    /* Filtro opcional para garantir que o logo se destaque se for escuro */
    /* filter: drop-shadow(0 0 5px var(--secondary-color)); */
}

.logo-link:hover .logo {
    transform: scale(1.05);
}

header nav ul {
    display: flex;
    gap: 25px;
    align-items: center;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-color);
}

nav a:hover::after {
    width: 100%;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark) !important;
    /* Força a cor do texto */
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    background-color: var(--secondary-color) !important;
    color: var(--text-light) !important;
    border-color: var(--secondary-hover);
}

.whatsapp-link i {
    font-size: 24px;
    color: var(--secondary-color);
    /* Ícone rosa */
    transition: color 0.3s ease;
}

.whatsapp-link:hover i {
    color: var(--text-light);
}

.whatsapp-link span {
    font-size: 18px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 30px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

section[id] {
    scroll-margin-top: 90px;
}

.hero-section {
    height: 100vh;
    display: flex;
    justify-content: left;
    align-items: flex-start;
    text-align: left;
    padding: 0 20px;
    color: var(--text-light);
    position: relative;
    /* Gradiente ajustado para um tom mais roxo/rosa sobre a imagem */
    background-image: url('background-hero.jpg');
    background-position: center;
    background-size: cover;
}

.hero-content {
    max-width: 650px;
    z-index: 2;
    margin-top: 180px;
    padding-left: 15px;
}

.hero-content h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    text-align: left;
}

.hero-content p {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    text-align: left;
    max-width: 550px;
}

.btn {
    font-size: 1rem;
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 30px;
    border: none;
    color: var(--text-light);
    background-color: var(--text-dark);
    /* Botão Roxo */
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(205, 122, 230, 0.4);
    /* Sombra roxa neon */
}

.btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(205, 122, 230, 0.6);
}

.services-section,
.apps-section {
    padding: 80px 30px;
    text-align: center;
    background-color: #ffffff;
}

.services-section h2,
.apps-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    margin-top: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.services-container,
.apps-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.service-card {
    background-color: var(--background-light);
    border-radius: 15px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(205, 122, 230, 0.2);
    /* Sombra roxa suave */
    border-color: var(--secondary-color);
    /* Borda rosa ao passar o mouse */
}

.service-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-content {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    /* Ícones Rosa */
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(253, 164, 220, 0.5);
    /* Brilho neon rosa */
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.apps-section {
    background-color: var(--background-light);
}

.app-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 20px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.app-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    /* Borda roxa no hover */
    box-shadow: 0 8px 25px rgba(205, 122, 230, 0.2);
}

.app-logo {
    max-width: 100px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 20px;
}

.app-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.app-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-us-section {
    padding: 80px 30px;
    background-color: white;
    color: var(--text-dark);
}

.about-us-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-us-logo {
    width: 280px;
    height: auto;
    margin-bottom: 30px;
}

.about-us-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

.purpose-section {
    padding: 80px 30px;
    background-color: var(--accent-color);
    /* Fundo Roxo Claro Neon */
    border-top: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
}

.purpose-section h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.purpose-section>p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.purpose-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.purpose-card {
    background-color: #ffffff;
    border: 2px solid var(--primary-color);
    /* Borda Roxa */
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.purpose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(205, 122, 230, 0.4);
    /* Brilho Roxo */
    background-color: var(--background-light);
}

.purpose-card-content {
    padding: 35px 30px;
    text-align: center;
}

.purpose-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    /* Ícone Rosa */
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(253, 164, 220, 0.6);
    /* Brilho neon rosa */
}

.purpose-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.purpose-description {
    font-size: 1rem;
    line-height: 1.6;
}

.contact-section {
    padding: 80px 30px;
    text-align: center;
    background-color: var(--background-light);
    color: var(--text-dark);
}

.contact-section h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.contact-section>p {
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-card {
    padding: 40px 30px;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    width: 100%;
    max-width: 340px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(253, 164, 220, 0.2);
}

.contact-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.contact-card h3 i {
    color: var(--secondary-color);
    /* Ícone Rosa nos cards de contato */
    margin-right: 10px;
}

.contact-card p {
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: #555;
    font-weight: 600;
    word-wrap: break-word;
}

.contact-card .btn {
    /* Botões nos cards de contato usam a cor secundária (rosa) para variar */
    background-color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(253, 164, 220, 0.4);
}

.contact-card .btn:hover {
    background-color: var(--secondary-hover);
    box-shadow: 0 6px 20px rgba(253, 164, 220, 0.6);
}

/* Mantém o botão do WhatsApp verde padrão, mas ajusta o hover */
.social-bar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.social-bar a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    color: var(--text-light);
    font-size: 35px;
    text-decoration: none;
    background-color: var(--whatsapp-green);
    /* WhatsApp Green */
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.social-bar a:hover {
    transform: scale(1.1);
    background-color: var(--whatsapp-hover);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
    /* Brilho verde no hover */
}

footer {
    padding: 25px 20px;
    text-align: center;
    color: var(--text-dark);
    background-color: var(--accent-color);
    /* Footer roxo claro */
    border-top: 2px solid var(--primary-color);
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    margin: 0 10px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

footer p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Estilos para Páginas Legais (termos.html, privacidade.html) */
.legal-page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 140px 20px 50px 20px;
}

.legal-page-content h1 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.legal-page-content>p:first-of-type {
    font-style: italic;
    color: #555;
    margin-bottom: 30px;
}

.legal-page-content h2 {
    font-size: 1.9rem;
    margin-top: 45px;
    margin-bottom: 20px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--secondary-color);
    /* Linha rosa */
}

.legal-page-content p,
.legal-page-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #343a40;
    margin-bottom: 1.2em;
}

.legal-page-content strong {
    color: var(--primary-color);
    /* Destaques em Roxo nas páginas legais */
}

.legal-page-content ul {
    padding-left: 20px;
}

/* Banner de Consentimento de Cookies */
#consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-light);
    /* Fundo Roxo */
    color: var(--text-dark);
    padding: 20px;
    z-index: 2000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transform: translateY(0);
    transition: transform 0.5s ease-in-out;
    box-shadow: 0 -4px 15px rgba(205, 122, 230, 0.3);
}

#consent-banner.hidden {
    transform: translateY(150%);
}

.consent-text {
    font-size: 0.9rem;
}

.consent-text a {
    color: var(--text-dark);
    /* Links rosa no banner */
    text-decoration: underline;
    font-weight: 700;
}

#accept-consent-btn {
    flex-shrink: 0;
    background-color: var(--text-dark);
    /* Botão rosa para contrastar com fundo roxo */
    color: var(--background-light);
}

#accept-consent-btn:hover {
    background-color: var(--secondary-hover);
    color: var(--text-light);
}

.app-persuasion {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 25px;
    padding: 0 10px;
    text-align: center;
}

/* Garante que o ícone do WhatsApp no botão tenha um espaço */
.app-links .btn i {
    margin-right: 8px;
}

.vip-group-section {
    padding: 100px 30px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ffffff 100%);
    border-top: 2px solid var(--secondary-color);
}

.vip-group-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.vip-content {
    flex: 1;
    min-width: 300px;
}

.badge {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.vip-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.vip-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.vip-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.benefit-item i {
    color: var(--secondary-color);
    font-size: 1.4rem;
}

.vip-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15rem;
    /* Ícone grande como decoração */
    color: var(--secondary-color);
    opacity: 0.3;
}

/* Botão VIP com Efeito Pulsante */
.btn-vip {
    background-color: var(--primary-color) !important;
    font-size: 1.2rem !important;
    padding: 20px 40px !important;
    animation: pulse-vip 2s infinite;
}

@keyframes pulse-vip {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(205, 122, 230, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(205, 122, 230, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(205, 122, 230, 0);
    }
}


.testimonials-section {
    padding: 80px 30px;
    background-color: var(--background-light);
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.testimonials-section p {
    max-width: 800px;
    margin: 0 auto  40px auto;
    font-size: 1.1rem;
    line-height: 1.6;
}


.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0 auto;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid var(--accent-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.testi-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--secondary-color);
}

.testimonial-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.stars {
    color: #FFD700;
    /* Cor Ouro para as estrelas */
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    color: #555;
}

/* Responsividade para Dispositivos Móveis */
@media (max-width: 768px) {



    header {
        height: 80px;
        padding: 0 20px;
    }

    .logo {
        width: 70px;
    }

    header nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
    }

    header.open {
        background-color: var(--accent-color);
    }

    header.open nav {
        display: block;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        background-color: var(--accent-color);
        border-bottom: 2px solid var(--secondary-color);
    }

    header nav ul {
        margin-top: 10px;
        flex-direction: column;
        gap: 10px;
    }

    header nav ul li a {
        display: block;
        padding: 18px 0;
        text-align: center;
        width: 100%;
        border-bottom: 1px solid var(--secondary-color);
        transition: color 0.3s ease;

    }

    header nav ul li a:hover {
        background-color: var(--background-light);
        color: var(--primary-color);
    }

    /* Remove o efeito de sublinhado neon no mobile para ficar mais limpo */
    nav a::after {
        display: none;
    }

    .whatsapp-link {
        justify-content: center;
        padding: 15px 10px;
        width: 100%;
        /* Um pouco menor que a largura total */
        margin: 10px auto;
        /* Centraliza */
        background-color: transparent;
        border: 2px solid var(--secondary-color);
    }

    .whatsapp-link:hover {
        background-color: var(--secondary-color) !important;
    }


    .menu-toggle {
        display: flex;
    }

    header.open .menu-toggle span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    header.open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    header.open .menu-toggle span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    section[id] {
        scroll-margin-top: 80px;
    }

    .hero-content {
        margin-top: 290px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .services-section,
    .apps-section,
    .purpose-section,
    .contact-section,
    .about-us-section {
        padding: 60px 20px;
    }

    .services-section h2,
    .apps-section h2,
    .purpose-section h2,
    .contact-section h2,
    .legal-page-content h1 {
        font-size: 2.2rem;
    }

    footer {
        padding-bottom: 25px;
    }

    #consent-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .vip-group-section {
        padding: 60px 20px;
    }

    .vip-content h2 {
        font-size: 2rem;
    }

    .vip-benefits {
        grid-template-columns: 1fr;
    }

    .vip-image {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        /* Uma coluna no mobile */
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonials-section {
        padding: 40px 20px;
    }

    /* Esconde o ícone grande no mobile */
}