/* --- PALETA DE CORES --- */
:root {
    --purple-deep: #492850;
    --purple-mid: #7a5c80;
    --purple-soft: #f3eefc;
    --yellow-gold: #f5dc8f;
    --yellow-pale: #fffdf5;
    --bg-body: #fafafa;
    --text-gray: #5a5a5a;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: var(--bg-body);
    color: var(--text-gray);
    line-height: 1.6;
    overflow-x: hidden;
    animation: fadeInPage 0.8s ease-out;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* --- HEADER --- */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(73, 40, 80, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

nav {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    height: 52px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Georgia', serif;
    color: var(--purple-deep);
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 600;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--purple-mid);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--purple-deep);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--yellow-gold);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-agendar {
    background-color: var(--yellow-gold);
    color: var(--purple-deep);
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(245, 220, 143, 0.4);
}

.btn-agendar:hover {
    transform: translateY(-2px);
    background-color: #fcebb6;
}

/* --- MENU HAMBURGUER (Mobile) --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--purple-deep);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* --- HERO --- */
.hero-section {
    padding: 150px 2rem 80px;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Georgia', serif;
    color: var(--purple-deep);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.highlight {
    background: linear-gradient(120deg, var(--yellow-gold) 0%, transparent 90%);
    padding: 0 5px;
    border-radius: 3px;
    color: var(--purple-deep);
    font-weight: 600;
}

.hero-image {
    width: 100%;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px 20px 0px var(--purple-soft);
    background-color: #e0e0e0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- METODOLOGIA --- */
.methodology-section {
    background-color: var(--white);
    padding: 5rem 2rem;
}

.methodology-container {
    max-width: 1000px;
    margin: 0 auto;
}

.method-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.method-header h2 {
    font-family: 'Georgia', serif;
    color: var(--purple-deep);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.method-text {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.audiences-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.audience-card {
    background-color: var(--bg-body);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid var(--yellow-gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
}

.audience-card:hover {
    transform: translateY(-5px);
}

.audience-title {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    color: var(--purple-deep);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.audience-desc {
    font-size: 1rem;
    color: #666;
}

/* --- SERVIÇOS --- */
.services-section {
    padding: 5rem 2rem;
    background-color: var(--purple-soft);
    text-align: center;
}

.services-section h2 {
    font-family: 'Georgia', serif;
    color: var(--purple-deep);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.services-intro {
    max-width: 700px;
    margin: 0 auto 3.5rem;
    color: var(--text-gray);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--purple-mid);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(73, 40, 80, 0.08);
}

.card h3 {
    color: var(--purple-deep);
    font-family: 'Georgia', serif;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card i {
    color: var(--purple-mid);
}

.card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* --- FAQ --- */
.faq-section {
    padding: 5rem 2rem;
    max-width: 850px;
    margin: 0 auto;
    background-color: var(--bg-body);
}

.faq-section h2 {
    text-align: center;
    color: var(--purple-deep);
    margin-bottom: 3rem;
    font-family: 'Georgia', serif;
    font-size: 2rem;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid rgba(73, 40, 80, 0.1);
    overflow: hidden;
}

.accordion-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--purple-deep);
    transition: background 0.2s;
}

.accordion-header:hover {
    background-color: var(--purple-soft);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    padding: 0 1.5rem;
    color: var(--text-gray);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

/* --- CONTATO --- */
.contact-section {
    padding: 5rem 2rem;
    background-color: var(--white);
    text-align: center;
}

.contact-container {
    max-width: 900px;
    margin: 3rem auto 0;
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 180px;
}

.contact-icon {
    font-size: 1.8rem;
    color: var(--purple-deep);
    background: var(--yellow-gold);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    transition: transform 0.3s;
    box-shadow: 0 4px 10px rgba(245, 220, 143, 0.5);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-label {
    font-weight: bold;
    color: var(--purple-deep);
    font-size: 1.1rem;
}

.contact-link {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.contact-link:hover {
    color: var(--purple-mid);
    text-decoration: underline;
}

/* --- FOOTER --- */
footer {
    margin-top: 0;
    background-color: var(--purple-soft);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.quote {
    padding: 3rem 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.quote::before {
    content: '"';
    font-family: 'Georgia', serif;
    font-size: 5rem;
    color: var(--yellow-gold);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
    line-height: 1;
}

.quote-text {
    font-family: 'Georgia', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--purple-deep);
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.footer-bottom {
    background-color: var(--purple-deep);
    color: rgba(255, 255, 255, 0.9);
    padding: 1.2rem;
    text-align: center;
    font-size: 0.85rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.separator {
    color: rgba(255, 255, 255, 0.4);
}

@keyframes fadeInPage {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- MOBILE RESPONSIVO --- */
@media (max-width: 768px) {

    /* Header ajustado para mobile */
    header {
        height: 70px;
    }

    nav {
        padding: 0 1rem;
    }

    .logo-container {
        gap: 8px;
    }

    .logo-icon {
        height: 40px;
    }

    .logo-title {
        font-size: 1.1rem;
    }

    .logo-subtitle {
        font-size: 0.65rem;
    }

    .btn-agendar {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding-top: 100px;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-image {
        height: 320px;
        order: -1;
        box-shadow: 10px 10px 0px var(--purple-soft);
    }

    /* Menu Hamburguer visível no mobile */
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 100px 2rem 2rem;
        gap: 1.5rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--purple-soft);
    }

    .nav-links a::after {
        display: none;
    }

    /* Overlay escuro quando menu está aberto */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }

    .nav-overlay.active {
        display: block;
    }

    .audiences-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-container {
        flex-direction: column;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }

    .separator {
        display: none;
    }

    .quote {
        padding: 2rem 1.5rem;
    }

    .quote::before {
        font-size: 4rem;
        top: -10px;
    }
}