/* =====================================================
   VARIÁVEIS CSS
   ===================================================== */
:root {
    /* Cores da Paleta */
    --rose-punch: #E85D8A;
    --rose-deep: #D64577;
    --dusk-blue: #475A7D;
    --dusk-light: #5B6F94;
    --powder-blue: #7BA3CC;
    --powder-light: #B8D4ED;
    --platinum: #F8FAFB;
    --graphite: #2B2F36;
    --white: #FFFFFF;
    --soft-gray: #E8ECEF;

    /* Cores Semânticas */
    --bg: var(--platinum);
    --primary: var(--dusk-blue);
    --primary-hover: var(--dusk-light);
    --success: #3F7A58;
    --success-hover: #4A8763;
    --dark: var(--graphite);
    --muted: var(--dusk-blue);
    --light: var(--white);
    --accent: var(--powder-blue);

    /* Sombras */
    --shadow-sm: 0 4px 12px rgba(43, 47, 54, 0.06);
    --shadow: 0 8px 24px rgba(43, 47, 54, 0.1);
    --shadow-lg: 0 16px 40px rgba(43, 47, 54, 0.14);

    /* Dimensões */
    --header-height: 72px;

    /* Gradientes Comuns */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-hover));
    --gradient-success-soft: linear-gradient(135deg, rgba(63, 122, 88, 0.08), rgba(74, 135, 99, 0.12));
    --gradient-bg-light: linear-gradient(135deg, rgba(71, 90, 125, 0.04), rgba(184, 212, 237, 0.06));
    --gradient-bg-medium: linear-gradient(135deg, rgba(123, 163, 204, 0.08), rgba(184, 212, 237, 0.12));
}

/* =====================================================
   RESET E CONFIGURAÇÕES GLOBAIS
   ===================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Manrope', 'Segoe UI', Tahoma, sans-serif;
    background: var(--bg);
    color: var(--dark);
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
    height: 100vh;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.material-symbols-outlined.icon-filled {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.steps span {
    display: inline-flex;
    width: 56px;
    height: 56px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--light);
    margin-bottom: 0.8rem;
    box-shadow: var(--shadow-sm);
}

.step-number {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

p {
    color: var(--dark);
    opacity: 0.9;
}

.muted {
    color: var(--muted);
    opacity: 0.85;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.site-header {
    background: var(--light);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    border-bottom: 1px solid var(--soft-gray);
    box-shadow: var(--shadow-sm);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    font-size: 1.3rem;
}

.brand img {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: 1.5rem;
}

.nav a {
    color: var(--graphite);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, opacity 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: var(--primary);
    opacity: 1;
}

.nav-cta-mobile {
    display: none;
}

.cta {
    background: var(--gradient-primary);
    color: var(--light);
    border: none;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.cta.full {
    width: 100%;
}

/* =====================================================
   BOTÕES (Consolidados)
   ===================================================== */
.cta,
.hero-btn,
.btn-questionario,
.btn-nossa-proposta,
.btn-psicologos,
.psicologo-btn {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
 
.cta:hover,
.hero-btn:hover,
.btn-questionario:hover,
.btn-nossa-proposta:hover,
.btn-psicologos:hover,
.psicologo-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Variações específicas */
.cta {
    padding: 0.75rem 1.6rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.cta:hover {
    box-shadow: var(--shadow);
}

.btn-questionario {
    letter-spacing: 0.5px;
    font-size: 1rem;
}

.btn-nossa-proposta {
    padding: 1rem 3rem;
}

.psicologo-btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
}

.psicologo-btn:hover {
    box-shadow: var(--shadow);
}

/* =====================================================
   BADGES (Consolidados)
   ===================================================== */
.badge-especialidade,
.badge-home-especialidade {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: linear-gradient(135deg, rgba(71, 90, 125, 0.08), rgba(91, 111, 148, 0.12));
    color: var(--primary);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(71, 90, 125, 0.15);
}

.badge-home-especialidade {
    padding: 0.35rem 0.8rem;
    font-size: 0.75rem;
}

/* =====================================================
   MENU HAMBURGUER
   ===================================================== */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: all 0.3s ease;
    position: relative;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
}

/* Overlay do menu mobile */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 47, 54, 0.7);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

/* Bloquear scroll quando menu estiver aberto */
body.menu-open {
    overflow: hidden;
    height: 100vh;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background-color: var(--dark);
    border-radius: 3px;
    transition: all 0.3s ease;
    position: absolute;
}

.hamburger-line:nth-child(1) {
    top: 12px;
}

.hamburger-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-line:nth-child(3) {
    bottom: 12px;
}

.menu-toggle.active .hamburger-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.hero {
    position: relative;
    padding: calc(5rem + var(--header-height)) 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--platinum);
    color: var(--dark);
    overflow: hidden;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - var(--header-height) - 9rem);
}

.hero-content {
    max-width: 540px;
}

.hero h1 {
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* Gradiente para textos destacados no hero */
.gradient-text {
    background: linear-gradient(135deg, var(--dusk-blue) 0%, var(--powder-blue) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

/* Texto menor no hero */
.hero h1 .text-smaller {
    font-size: 2.4rem;
    font-style: italic;
}

.hero-description {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
}

.hero-image-shape {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-image-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
    box-shadow: var(--shadow-lg);
}

.hero-shape-bg {
    position: absolute;
    border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
    z-index: 1;
}

.hero-shape-1 {
    width: 480px;
    height: 480px;
    background: linear-gradient(135deg, rgba(91, 111, 148, 0.18), rgba(71, 90, 125, 0.08));
    top: -30px;
    right: 60px;
    animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
    width: 410px;
    height: 410px;
    background: linear-gradient(225deg, rgba(123, 163, 204, 0.25), rgba(184, 212, 237, 0.12));
    bottom: -20px;
    right: -40px;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.scroll-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    opacity: 0.9;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(71, 90, 125, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    font-size: 1.5rem;
}

.scroll-arrow:hover {
    opacity: 1;
    background: rgba(71, 90, 125, 0.25);
    transform: translateX(-50%) scale(1.15);
    animation-play-state: paused;
    color: var(--primary);
    box-shadow: var(--shadow);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0) scale(1);
    }
    40% {
        transform: translateX(-50%) translateY(-15px) scale(1.05);
    }
    60% {
        transform: translateX(-50%) translateY(-8px) scale(1.02);
    }
}

.section {
    padding: 3.5rem 0;
    scroll-margin-top: var(--header-height);
}

.section-especialidades {
    background: var(--gradient-bg-light);
    border-top: 1px solid rgba(71, 90, 125, 0.08);
    border-bottom: 1px solid rgba(184, 212, 237, 0.1);
    padding: 4rem 0;
}

.container-full {
    width: 100%;
}

.especialidades-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.especialidades-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.25;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.especialidades-header p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--muted);
    opacity: 0.9;
    margin-top: 1rem;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
}

.carousel-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0 2rem 3rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    padding: 0.5rem 0;
}

.carousel-card {
    flex: 0 0 320px;
    background: var(--light);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--soft-gray);
    display: flex;
    flex-direction: column;
}

.carousel-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--powder-light);
}

.carousel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.carousel-card:hover img {
    transform: scale(1.05);
}

.carousel-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.carousel-card-content h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-size: 1.3rem;
}

.carousel-card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--muted);
}

.carousel-help-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.9rem;
    align-self: flex-end;
    text-align: right;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.carousel-help-link:hover {
    color: var(--primary-hover);
}

.carousel-help-icon {
    display: inline-flex;
    align-items: center;
}

.carousel-help-icon .material-symbols-outlined {
    display: block;
    line-height: 1;
}


.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--light);
    border: 1px solid var(--soft-gray);
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    z-index: 5;
}

.carousel-btn .material-symbols-outlined {
    font-size: 26px;
}

.carousel-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn-prev {
    left: 1rem;
}

.carousel-btn-next {
    right: 1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0 1rem;
    flex-wrap: wrap;
    max-width: 100%;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(71, 90, 125, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.carousel-dot:hover {
    background: rgba(71, 90, 125, 0.4);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
}

.section-questionario {
    padding: 4rem 0;
    background: var(--gradient-bg-medium);
}

.questionario-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.questionario-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.questionario-content h2 .material-symbols-outlined {
    font-size: 64px;
    width: 64px;
    height: 64px;
    color: var(--primary);
}

.questionario-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--muted);
    margin: 0 0 1.5rem 0;
}

@media (max-width: 768px) {
    .carousel-btn {
        display: none;
    }
    
    .carousel-card {
        flex: 0 0 280px;
    }
    
    .carousel-container {
        padding: 0 calc(50% - 140px) 1.5rem calc(50% - 140px);
        scroll-snap-type: x mandatory;
    }

    .carousel-card {
        scroll-snap-align: center;
    }

    .carousel-track {
        justify-content: flex-start;
    }

    .carousel-dots {
        gap: 0.35rem;
        padding: 0 0.5rem;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }

    .carousel-dot.active {
        width: 22px;
    }
}

@media (max-width: 768px) {
    .section-questionario {
        padding: 3rem 0;
    }

    .questionario-content {
        margin: 0 1rem;
    }

    .questionario-content h2 {
        flex-direction: column;
        gap: 1rem;
    }

    .questionario-content h2 .material-symbols-outlined {
        font-size: 64px;
        width: 64px;
        height: 64px;
    }

    .questionario-content p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .btn-questionario {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }
}

.section-nossa-proposta {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 248, 240, 0.6), rgba(248, 243, 237, 0.8));
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.25;
    margin-top: 0.5rem;
}

.nossa-proposta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 3.5rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.nossa-proposta-card {
    text-align: center;
    padding: 0;
    transition: transform 0.3s ease;
}

.nossa-proposta-card:hover {
    transform: translateY(-6px);
}

.nossa-proposta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(71, 90, 125, 0.1), rgba(71, 90, 125, 0.05));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nossa-proposta-card:hover .nossa-proposta-icon {
    background: var(--gradient-primary);
    transform: scale(1.05);
}

.nossa-proposta-icon .material-symbols-outlined {
    font-size: 34px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.nossa-proposta-card:hover .nossa-proposta-icon .material-symbols-outlined {
    color: var(--white);
}

.nossa-proposta-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.nossa-proposta-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 380px;
    margin: 0 auto;
}

.nossa-proposta-cta {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 900px) {
    .nossa-proposta-grid {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .section-nossa-proposta {
        padding: 3.5rem 0;
    }

    .nossa-proposta-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .nossa-proposta-icon {
        width: 70px;
        height: 70px;
    }

    .nossa-proposta-icon .material-symbols-outlined {
        font-size: 28px;
    }
}

.section-comparacao {
    padding: 5rem 0;
    background: #FAFBFC;
}

.section-comparacao .section-header h2 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.comparacao-table {
    max-width: 1000px;
    margin: 3rem auto 0;
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid #E5E7EB;
}

.comparacao-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid #E5E7EB;
}

.comparacao-col {
    padding: 1.25rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    background: #F9FAFB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
}

.comparacao-col:first-child {
    background: var(--white);
}

.comparacao-col-digiterapia {
    background: #F3F6F9;
    border-left: 1px solid #D1DBE6;
    border-right: 1px solid #D1DBE6;
}

.comparacao-col-presencial {
    color: #6B7280;
    background: #F9FAFB;
}

.comparacao-logo {
    height: 28px;
    width: auto;
}

.comparacao-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid #F3F4F6;
    align-items: stretch;
}

.comparacao-row:last-child {
    border-bottom: none;
}

.comparacao-row > div:nth-child(2) {
    background: #F8FAFC;
    border-left: 1px solid #D1DBE6;
    border-right: 1px solid #D1DBE6;
}

.comparacao-label {
    padding: 1.25rem 1.5rem;
    font-size: 0.94rem;
    color: #374151;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.comparacao-value {
    padding: 1.25rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.comparacao-value .material-symbols-outlined {
    font-size: 24px;
    transition: transform 0.15s ease;
}

.comparacao-value .material-symbols-outlined:hover {
    transform: scale(1.08);
}

.icon-check {
    color: #475A7D;
}

.icon-check-alt {
    color: #9CA3AF;
}

.icon-x {
    color: #475A7D;
}

.icon-x-alt {
    color: #D1D5DB;
}

@media (max-width: 768px) {
    .section-comparacao {
        padding: 3.5rem 0;
    }

    .section-comparacao .section-header h2 {
        font-size: 1.65rem;
    }

    .comparacao-table {
        margin-top: 2rem;
    }

    .comparacao-header,
    .comparacao-row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .comparacao-col {
        padding: 1rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .comparacao-logo {
        height: 22px;
    }

    .comparacao-label {
        padding: 1rem 1rem;
        font-size: 0.86rem;
        line-height: 1.4;
    }

    .comparacao-value {
        padding: 1rem 0.5rem;
    }

    .comparacao-value .material-symbols-outlined {
        font-size: 22px;
    }

    .psicologos-home-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .psicologo-home-foto-wrapper {
        height: 240px;
    }
}

.section.alt {
    background: var(--light);
    border-top: 1px solid var(--soft-gray);
    border-bottom: 1px solid var(--soft-gray);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.card {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--soft-gray);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--powder-light);
}

.card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 0.8rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.card h3 {
    margin-bottom: 0.5rem;
}

.card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.steps > div {
    text-align: center;
    padding: 1.5rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.steps > div:hover {
    background: rgba(123, 163, 204, 0.05);
    transform: translateY(-4px);
}

.steps h4 {
    color: var(--dark);
    margin: 0.8rem 0 0.5rem;
}

.steps p {
    color: var(--muted);
    font-size: 0.95rem;
}

.step-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(123, 163, 204, 0.12);
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.step-icon .material-symbols-outlined {
    font-size: 24px;
}

.steps span {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--light);
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
}

/* Seção Psicólogos Home */
.section-psicologos-home {
    background: var(--light);
    padding: 5rem 0;
}

.psicologos-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 150px);
    gap: 1.25rem;
    margin-top: 3rem;
    justify-content: center;
}

.psicologo-home-card {
    background: var(--platinum);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(71, 90, 125, 0.08);
    width: 150px;
    height: 150px;
}

.psicologo-home-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(71, 90, 125, 0.12);
}

.psicologo-home-foto-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.psicologo-home-foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.psicologo-home-card:hover .psicologo-home-foto {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .psicologos-home-grid {
        grid-template-columns: repeat(3, minmax(90px, 1fr));
    }

    .psicologo-home-card {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
}

.psicologo-home-info {
    padding: 1.5rem;
}

.psicologo-home-nome {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.psicologo-home-crp {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.psicologo-home-abordagem {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    font-style: italic;
}

.psicologo-home-especialidades {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.section-depoimentos {
    background: var(--light);
    padding: 5rem 0;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.depoimento-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--soft-gray);
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.depoimento-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.depoimento-foto {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.depoimento-texto {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark);
    position: relative;
    z-index: 1;
}

.depoimento-autor {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.depoimento-autor strong {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 600;
}

.depoimento-autor span {
    font-size: 0.875rem;
    color: var(--muted);
}

.depoimento-rating {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.depoimento-rating .material-symbols-outlined {
    flex-shrink: 0;
    font-size: 18px;
    color: #FDB022;
}

.section-contato {
    background: linear-gradient(135deg, #E8F5E9 0%, #F1F8F4 100%);
    border-top: 1px solid #C8E6C9;
    border-bottom: 1px solid #C8E6C9;
}

.contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #128C7E;
    padding: 1rem 2rem;
}

.cta-whatsapp:hover {
    background: #0F7A6D;
    transform: translateY(-2px);
}

.cta-whatsapp svg {
    flex-shrink: 0;
}

.site-footer {
    padding: 3rem 0 1.5rem;
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-cvv p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-cvv strong {
    color: var(--white);
    font-weight: 700;
}

.cvv-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cvv-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--white);
}

.contact-item .material-symbols-outlined {
    flex-shrink: 0;
    font-size: 18px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 968px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 3rem;
    }

    .hero-image {
        height: 500px;
    }

    .hero-shape-1 {
        width: 380px;
        height: 380px;
    }

    .hero-shape-2 {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 720px) {
    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        width: 100%;
        background: var(--light);
        flex-direction: column;
        gap: 0.25rem;
        padding: 1rem 0;
        box-shadow: var(--shadow);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
        overflow-x: hidden;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav a {
        padding: 1rem 1.5rem;
        width: 100%;
        text-align: left;
    }

    .nav-cta-mobile {
        display: none;
    }

     .nav .nav-cta-mobile {
        display: block;
        background: var(--gradient-primary);
        color: var(--white) !important;
        text-align: center;
        margin: 1.5rem 1rem 0.5rem;
        padding: 1rem 2rem !important;
        border-radius: 999px;
        font-weight: 700;
        border: none !important;
        box-shadow: var(--shadow-sm);
        width: calc(100% - 2rem);
    }

    .menu-toggle {
        display: flex;
    }

    .site-header .cta {
        display: none;
    }

    .site-header .container {
        padding: 0;
    }

    .section-contato {
        padding: 3rem 1.5rem;
    }

    .contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .contact h2 {
        font-size: 1.75rem;
    }

    .cta-whatsapp {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 1.25rem 1.5rem;
    }

    .hero {
        padding: calc(3rem + var(--header-height)) 0 3rem;
    }

    .hero-split {
        gap: 2rem;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h1 .text-smaller {
        font-size: calc(1em - 4px);
        font-style: italic;
    }

    .hero h1 .gradient-text {
        font-size: calc(1em + 4px);
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-image {
        height: 400px;
    }

    .hero-shape-1 {
        width: 340px;
        height: 340px;
        top: -20px;
        right: 40px;
    }

    .hero-shape-2 {
        width: 290px;
        height: 290px;
        bottom: -15px;
        right: -25px;
    }

    .scroll-arrow {
        display: none;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .depoimento-card {
        padding: 1.5rem;
    }

    .depoimento-texto {
        font-size: 0.95rem;
    }
}

/* === Questionário === */
.questionario-page {
    background: var(--bg);
}

.section-questionario-header {
    padding: calc(3rem + var(--header-height)) 0 3rem;
    background: var(--gradient-bg-medium);
}

.questionario-header-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.questionario-icon {
    flex-shrink: 0;
}

.questionario-icon .material-symbols-outlined {
    font-size: 64px;
    width: 64px;
    height: 64px;
    color: var(--primary);
    display: block;
}

.questionario-text {
    flex: 1;
    text-align: center;
}

.questionario-text h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--dark);
    margin: 0 0 0.75rem 0;
    font-weight: 700;
    line-height: 1.3;
}

.questionario-text p {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.section-questionario-form {
    padding: 4rem 0;
}

.questionario-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--soft-gray);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
    width: 33.33%;
}

.progress-text {
    text-align: center;
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 3rem;
    font-weight: 600;
}

.questionario-form {
    position: relative;
}

.question-slide {
    display: none;
    animation: fadeIn 0.4s ease;
}

.question-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.question-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--dark);
    margin-bottom: 2.5rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

.options-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.option-item {
    position: relative;
    cursor: pointer;
}

.option-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.option-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    background: var(--white);
    border: 2px solid var(--soft-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.option-item:hover .option-content {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.option-item input[type="radio"]:checked ~ .option-content,
.option-item.selected .option-content {
    background: linear-gradient(135deg, rgba(71, 90, 125, 0.08), rgba(71, 90, 125, 0.04));
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.option-icon {
    flex-shrink: 0;
    font-size: 2rem;
    color: var(--primary);
}

.option-text {
    flex: 1;
    font-size: 1.05rem;
    color: var(--dark);
    font-weight: 500;
    line-height: 1.5;
}

.question-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.btn-secondary,
.btn-primary {
    padding: 1rem 2.5rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-secondary {
    background: var(--soft-gray);
    color: var(--muted);
}

.btn-secondary:hover:not(:disabled) {
    background: #d0d4d8;
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary:disabled,
.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Tela de Resultado */
.result-slide {
    text-align: center;
}

.result-content {
    max-width: 600px;
    margin: 0 auto;
}

.result-icon {
    font-size: 5rem;
    color: #4caf50;
    margin-bottom: 1.5rem;
}

.result-content h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.result-message {
    text-align: left;
    margin-bottom: 3rem;
}

.result-message p {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.especialidades-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.especialidades-list li {
    margin-bottom: 0.75rem;
}

.especialidades-list li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--soft-gray);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.especialidades-list li a:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.especialidades-list li .material-symbols-outlined {
    color: #4caf50;
    font-size: 1.5rem;
}

.result-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: #25D366;
    color: var(--white);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .section-questionario-header {
        padding: calc(2rem + var(--header-height)) 0 2rem;
    }

    .questionario-header-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .questionario-icon .material-symbols-outlined {
        font-size: 64px;
        width: 64px;
        height: 64px;
    }

    .questionario-text h1,
    .questionario-text p {
        text-align: center;
    }

    .section-questionario-form {
        padding: 2.5rem 0;
    }

    .questionario-wrapper {
        margin: 0 1rem;
    }

    .question-title {
        margin-bottom: 2rem;
    }

    .option-content {
        padding: 1.25rem 1.25rem;
        gap: 1rem;
    }

    .option-icon {
        font-size: 1.75rem;
    }

    .option-text {
        font-size: 0.95rem;
    }

    .question-actions {
        flex-direction: column;
    }

    .btn-secondary,
    .btn-primary {
        padding: 0.9rem 2rem;
    }

    .result-icon {
        font-size: 4rem;
    }
}

/* =====================================================
   Página de Psicólogos
   ===================================================== */

.psicologos-hero {
    background: var(--platinum);
    padding: calc(4rem + var(--header-height)) 0 4rem;
    text-align: center;
}

.psicologos-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.psicologos-hero .section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.psicologos-hero h1 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.25;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.psicologos-hero p {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.7;
    color: var(--muted);
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.psicologos-section {
    padding: 4rem 0;
    background: var(--gradient-bg-light);
    border-top: 1px solid rgba(71, 90, 125, 0.08);
}

.psicologos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.psicologo-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(71, 90, 125, 0.08);
}

.psicologo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(71, 90, 125, 0.12);
}

.psicologo-foto {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: linear-gradient(135deg, rgba(123, 163, 204, 0.15), rgba(184, 212, 237, 0.1));
}

.psicologo-info {
    padding: 1.5rem;
}

.psicologo-nome {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.psicologo-crp {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.psicologo-abordagem {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    font-style: italic;
}

.psicologo-especialidades {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.psicologo-bio {
    color: var(--dark);
    line-height: 1.6;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.psicologo-valor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--success);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1rem;
    background: var(--gradient-success-soft);
    border-radius: 12px;
    text-align: center;
}

.psicologo-valor-label {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.8;
}

.voltar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem auto;
    text-align: center;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.75rem 2rem;
    border: 2px solid var(--primary);
    border-radius: 999px;
    background: transparent;
    transition: all 0.3s ease;
}

.voltar-link:hover {
    background: var(--primary);
    color: var(--white);
}

.psicologos-empty-message {
    text-align: center;
    grid-column: 1 / -1;
}

.psicologos-view-all {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .psicologos-hero {
        padding: calc(3rem + var(--header-height)) 20px 3rem;
    }

    .psicologos-hero h1 {
        font-size: 1.8rem;
    }

    .psicologos-grid {
        grid-template-columns: 1fr;
    }
}
