/* -------------------------------------------------------------
   DESIGN SYSTEM - LANDING PAGE PSICOLOGIA (SLATE/SAGE)
   ------------------------------------------------------------- */

:root {
    /* Colors */
    --color-primary: #556A73;
    /* Azul Petróleo / Destaque / CTA Principal */
    --color-primary-light: #61788C;
    /* Slate Blue */
    --color-secondary: #99ADBF;
    /* Azul Acinzentado / Bordas / Detalhes */
    --color-accent: #ABBFAA;
    /* Verde Sálvia / Badges / Acolhimento */
    --color-surface: #D2D6D9;
    /* Cinza Neutro / Bordas Suaves */
    --bg-main: #FBFBFA;
    /* Off-white Quente de Fundo */
    --bg-surface: #F3F5F4;
    /* Superfície de Cards e Containers */
    --text-main: #000000;
    /* Grafite Escuro */
    --text-muted: #000000;
    /* Neutro Médio / Texto Secundário */
    --white: #FFFFFF;

    /* Fonts */
    --font-title: "Myriad Variable Concept", "Myriad Pro", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: "Myriad Variable Concept", "Myriad Pro", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-ui: "Myriad Variable Concept", "Myriad Pro", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;

    /* Font Sizes (Fluid Typography via clamp) */
    --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --fs-sm: clamp(0.875rem, 0.825rem + 0.25vw, 1rem);
    --fs-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --fs-md: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
    --fs-lg: clamp(1.75rem, 1.6rem + 0.75vw, 2.25rem);
    --fs-xl: clamp(2.25rem, 2rem + 1.25vw, 3.5rem);

    /* Spacing (Fluid Spacing) */
    --space-xs: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
    --space-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1.25rem);
    --space-md: clamp(1.5rem, 1.35rem + 0.75vw, 2.5rem);
    --space-lg: clamp(2.5rem, 2.2rem + 1.5vw, 4.5rem);
    --space-xl: clamp(4rem, 3.5rem + 2.5vw, 7rem);

    /* Rounded Corners */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    /* Transitions & Shadows */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 4px 20px rgba(44, 53, 57, 0.04);
    --shadow-medium: 0 8px 30px rgba(44, 53, 57, 0.08);
    --shadow-float: 0 20px 40px -12px rgba(44, 53, 57, 0.12), 0 8px 20px -6px rgba(44, 53, 57, 0.06);
    --shadow-subtle: 0 16px 36px -8px rgba(18, 30, 36, 0.35), 0 6px 14px -3px rgba(18, 30, 36, 0.2);
    --bg-section-sobre: #566a73;

    /* Max Width */
    --max-width: 1200px;
}

/* Modern CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Offset for sticky header */
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-main);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
svg,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
input,
select,
textarea {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

/* Typography Base Classes */
h1,
h2,
h3,
h4 {
    font-family: var(--font-title);
    font-weight: 500;
    line-height: 1.25;
    color: var(--text-main);
}

/* Helper Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

.section-padding {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

/* -------------------------------------------------------------
   HEADER & NAVEGAÇÃO FIXA (GLASSMORPHYSM)
   ------------------------------------------------------------- */
header.header-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 76px;
    z-index: 1000;
    background-color: rgba(251, 251, 250, 0.88);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(153, 173, 191, 0.25);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}

header.header-main.header-scrolled {
    height: 70px;
    background-color: rgba(251, 251, 250, 0.96);
    border-bottom-color: rgba(153, 173, 191, 0.35);
    box-shadow: 0 4px 20px rgba(44, 53, 57, 0.06);
}

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

/* 1. Identificação Profissional */
.brand-group {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.brand-group:hover {
    opacity: 0.88;
}

.brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 48px;
}

.brand-name {
    font-family: "Myriad Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1.65rem;
    font-weight: 400;
    color: var(--color-primary);
    letter-spacing: 0.01em;
    line-height: 1;
}

.brand-sub {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    font-family: "Myriad Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--color-primary);
    letter-spacing: 0.02em;
    line-height: 1;
    margin-top: 0;
}

.brand-role,
.brand-crp {
    color: var(--color-primary);
}

/* 2. Menu de Navegação (Desktop) */
.nav-menu {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--color-primary);
    text-decoration: none;
    position: relative;
    padding: 0.25rem 0.15rem;
    display: inline-block;
    transition: color 0.3s ease, transform 0.25s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background-color: var(--color-primary);
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), left 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
    opacity: 0;
}

.nav-link:hover {
    color: #1f282c;
    transform: translateY(-1px);
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
    opacity: 0.9;
}

.nav-divider {
    font-family: var(--font-body);
    color: #4f616b;
    font-size: 1.05rem;
    font-weight: 300;
    -webkit-user-select: none;
    user-select: none;
    opacity: 0.7;
}

/* Alternador de Idioma por Bandeiras */
.lang-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    border-radius: 4px;
    text-decoration: none;
    line-height: 1;
    vertical-align: middle;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.lang-switch:hover {
    transform: scale(1.08);
    opacity: 0.9;
}

.lang-switch-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    border-radius: 4px;
    text-decoration: none;
    margin-right: 0.75rem;
    line-height: 1;
    vertical-align: middle;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.lang-switch-mobile:hover {
    transform: scale(1.08);
    opacity: 0.9;
}

.lang-flag-img {
    width: 28px;
    height: 18px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
    display: block;
    transition: box-shadow 0.2s ease;
}

.lang-switch:hover .lang-flag-img,
.lang-switch-mobile:hover .lang-flag-img {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

/* 3. Botão Contato Cápsula */
.header-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    height: 38px;
    padding: 0 1.5rem;
    border: 1.5px solid #4f616b;
    border-radius: 6px;
    background-color: transparent;
    text-decoration: none;
    margin-left: 1.75rem;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.header-whatsapp-btn:hover {
    background-color: rgba(79, 97, 107, 0.08);
    border-color: #2b3940;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(79, 97, 107, 0.12);
}

.header-contact-text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 500;
    color: #4f616b;
    letter-spacing: 0.02em;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    transition: color 0.25s ease;
}

.header-whatsapp-btn:hover .header-contact-text {
    color: #2b3940;
}

.mobile-whatsapp {
    display: none;
}

/* 4. Ações & CTA */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.attendance-badge,
.attendance-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0.35rem 0.75rem;
    background-color: rgba(171, 191, 170, 0.18);
    border: 1px solid rgba(171, 191, 170, 0.45);
    border-radius: 20px;
}

.status-indicator {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #5B8C5A;
    box-shadow: 0 0 0 0 rgba(91, 140, 90, 0.4);
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(91, 140, 90, 0.5);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(91, 140, 90, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(91, 140, 90, 0);
    }
}

.status-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-main);
    white-space: nowrap;
}

.header-cta,
.nav-mobile-cta {
    font-size: 0.875rem;
    padding: 0.65rem 1.35rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(85, 106, 115, 0.18);
    text-decoration: none;
    white-space: nowrap;
}

.header-cta:hover,
.nav-mobile-cta:hover {
    box-shadow: 0 6px 16px rgba(85, 106, 115, 0.28);
}

/* 4. Menu Hambúrguer Minimalista */
.header-actions-mobile {
    display: none;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    transition: background-color 0.2s ease;
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--color-primary);
}

.hamburger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
    transform-origin: center;
}

/* Animação Hambúrguer para X */
.menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

/* Responsividade do Header */
@media (max-width: 992px) {
    .attendance-badge {
        display: none;
    }
}

@media (max-width: 820px) {
    .header-cta {
        display: none;
    }

    .header-actions-mobile {
        display: flex;
        align-items: center;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 76px;
        left: 0;
        width: 100%;
        height: calc(100vh - 76px);
        background-color: rgba(251, 251, 250, 0.98);
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 2rem var(--space-md);
        gap: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
        border-bottom: 1px solid var(--color-surface);
        overflow-y: auto;
    }

    header.header-main.header-scrolled+* .nav-menu,
    header.header-main.header-scrolled .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .nav-menu.is-active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-link {
        font-size: 1.15rem;
        font-weight: 600;
        display: block;
        width: 100%;
    }

    .nav-divider {
        display: none;
    }

    .nav-mobile-action {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        width: 100%;
        margin-top: 1rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(153, 173, 191, 0.25);
    }

    .desktop-whatsapp {
        display: none;
    }

    .mobile-whatsapp {
        display: inline-flex;
        margin-left: 0;
        width: 100%;
        height: 44px;
        justify-content: center;
        padding: 0 1.25rem;
    }
}

section {
    position: relative;
    overflow: hidden;
}

/* -------------------------------------------------------------
   HERO SECTION (DOBRA PRINCIPAL)
   ------------------------------------------------------------- */

.hero-section {
    position: relative;
    min-height: 602px;
    display: flex;
    align-items: center;
    padding-top: clamp(7rem, 9vh + 4rem, 9.5rem);
    padding-bottom: clamp(3.5rem, 5vh + 1.5rem, 5rem);
    background: url('assets/images/fundohero.webp') no-repeat top center;
    background-size: cover;
    overflow: hidden;
}

.hero-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

/* Coluna de Conteúdo (Alinhado à Esquerda) */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 680px;
    margin: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 9999px;
    padding: 0.4rem 0.95rem;
    margin-bottom: 1.25rem;
    color: #ffffff;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero-badge-icon {
    width: 18px;
    height: 18px;
    color: #4ade80;
    flex-shrink: 0;
}

.hero-title {
    font-family: "Myriad Variable Concept", "Myriad Pro", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.85rem, 1.5rem + 1.1vw, 2.5rem);
    font-weight: 450;
    line-height: 1.25;
    color: #ffffff;
    letter-spacing: -0.015em;
    margin-bottom: 0.85rem;
    max-width: 680px;
    text-align: left;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.15rem, 1.05rem + 0.3vw, 1.35rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.96);
    line-height: 1.45;
    margin-bottom: 1rem;
    text-align: left;
}

.hero-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    max-width: 580px;
    margin-bottom: 2.25rem;
    text-align: left;
}

.hero-text {
    font-family: var(--font-body);
    font-size: clamp(1.12rem, 1.02rem + 0.25vw, 1.28rem);
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    text-align: left;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.btn.hero-btn-cta {
    background-color: var(--white);
    color: var(--text-main);
    font-family: var(--font-ui);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.85rem 1.75rem;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn.hero-btn-cta:hover {
    background-color: #edf2f7;
    color: #1a1a46;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* Responsividade Mobile (< 900px) */
@media (max-width: 900px) {
    .hero-section {
        padding-top: calc(70px + 2rem);
        padding-bottom: 2.5rem;
    }

    .hero-content {
        align-items: flex-start;
        text-align: left;
    }

    .hero-title {
        text-align: left;
        margin-bottom: 1.25rem;
    }

    .hero-text-group {
        align-items: flex-start;
        text-align: left;
        margin-bottom: 1.75rem;
        gap: 0.85rem;
    }

    .hero-text {
        font-size: 1.05rem;
        text-align: left;
    }

    .hero-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-btn-cta {
        width: 100%;
        max-width: 320px;
    }
}

/* Specific elements styles to guarantee clean design instantly */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--color-secondary);
    color: var(--text-main);
}

.btn-secondary:hover {
    background-color: var(--bg-surface);
    transform: translateY(-2px);
}

/* -------------------------------------------------------------
   SEÇÃO ESPECIALIDADES / DEMANDAS ATENDIDAS
   ------------------------------------------------------------- */

.especialidades-section {
    background-color: #F4F5F6;
    padding: clamp(3rem, 5vw, 5.5rem) 0 clamp(3.5rem, 5vw, 6rem) 0;
    position: relative;
    overflow: hidden;
}

.demandas-bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    min-width: 1300px;
    max-width: 1920px;
    height: auto;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
    -webkit-user-select: none;
    user-select: none;
}

.especialidades-section .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.demanda-eyebrow {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #5F7A8C;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.demanda-eyebrow::before,
.demanda-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: #98ABB8;
}

.demanda-eyebrow::before {
    right: calc(100% + 12px);
}

.demanda-eyebrow::after {
    left: calc(100% + 12px);
}

.especialidades-section .section-header {
    margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.especialidades-section .section-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 450;
    color: #4E646D;
    line-height: 1.2;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}



.especialidades-section .section-desc {
    font-family: var(--font-body);
    max-width: 640px;
    margin: 0 auto;
    color: #5F7A8C;
    font-size: 1.05rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Divisor Decorativo */
.demanda-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem auto 3.25rem;
    max-width: 300px;
    position: relative;
    z-index: 1;
}

.demanda-divider .line {
    flex: 1;
    height: 1px;
    background: #D5D9DC;
}

.demanda-divider .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #A7B9A3;
}

/* Grid Responsivo de 6 Cards */
.demandas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 960px) {
    .demandas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .demandas-grid {
        grid-template-columns: 1fr;
    }
}

/* Card Individual */
.demanda-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2.5rem 2rem 2.25rem;
    text-align: center;
    border: 1px solid #D5D9DC;
    transition: transform .45s cubic-bezier(.2, .8, .2, 1),
        box-shadow .45s ease,
        border-color .45s ease;
    overflow: hidden;
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.demanda-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(167, 185, 163, 0.12) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .45s ease;
    pointer-events: none;
}

.demanda-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px -20px rgba(78, 100, 109, 0.22);
    border-color: #98ABB8;
}

.demanda-card:hover::before {
    opacity: 1;
}

/* Ícone com círculo e transição */
.demanda-icon-box {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: #F4F5F6;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform .45s ease, background .45s ease;
    flex-shrink: 0;
}

.demanda-card:hover .demanda-icon-box {
    transform: scale(1.08) rotate(-4deg);
    background: #A7B9A3;
}

.demanda-icon {
    width: 28px;
    height: 28px;
    stroke: #4E646D;
    stroke-width: 1.6;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .45s ease;
}

.demanda-card:hover .demanda-icon {
    stroke: #FFFFFF;
}

/* Título H3 */
.demanda-title {
    font-family: var(--font-title);
    letter-spacing: 0.08em;
    font-size: 1.35rem;
    font-weight: 500;
    color: #232359;
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Texto descritivo */
.demanda-text {
    font-family: var(--font-body);
    letter-spacing: 0.08em;
    color: #000000;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

/* Faixa CTA Demandas */
.demanda-cta {
    max-width: 1100px;
    margin: 3.5rem auto 0;
    position: relative;
    z-index: 1;
}

.demanda-cta .cta-inner {
    background: linear-gradient(135deg, #5F7A8C 0%, #4E646D 100%);
    border-radius: 24px;
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px -10px rgba(78, 100, 109, 0.25);
}

.demanda-cta .cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(167, 185, 163, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.demanda-cta .cta-inner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(152, 171, 184, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.demanda-cta .cta-title {
    font-family: var(--font-title);
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    font-weight: 450;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.25;
}

.demanda-cta .cta-desc {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    margin: 0;
}

.demanda-cta .cta-btn {
    background-color: #ffffff;
    color: #232359;
    font-family: var(--font-ui);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 1.2rem;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.demanda-cta .cta-btn:hover {
    background-color: #edf2f7;
    color: #1a1a46;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

@media (max-width: 680px) {
    .demanda-cta .cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
    }
}

/* Animação Reveal Suave */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s cubic-bezier(0.16, 1, 0.3, 1), transform .8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* -------------------------------------------------------------
   SEÇÃO SOBRE O PROFISSIONAL (section#sobre)
   ------------------------------------------------------------- */
.sobre-section {
    background-color: var(--bg-section-sobre, #566a73);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.sobre-grid {
    display: grid;
    grid-template-columns: minmax(300px, 440px) 1fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: center;
}

.sobre-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sobre-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: var(--shadow-subtle);
    background-color: rgba(255, 255, 255, 0.05);
}

.sobre-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    border-radius: 12px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sobre-image-wrapper:hover .sobre-img {
    transform: scale(1.02);
}

.sobre-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sobre-eyebrow {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.sobre-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: 450;
    color: #FFFFFF;
    line-height: 1.25;
    letter-spacing: -0.015em;
    margin-bottom: 1.75rem;
}

.sobre-bio {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.sobre-bio p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 400;
    margin: 0;
}

/* Bloco de Ação (CTA) */
.sobre-actions {
    margin-top: 1.75rem;
    display: flex;
    align-items: center;
}

.sobre-btn-cta {
    background-color: #ffffff;
    color: #232359;
    font-family: var(--font-ui);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.85rem 1.75rem;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.sobre-btn-cta:hover {
    background-color: #edf2f7;
    color: #1a1a46;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

/* Badge de Validação Ética (CFP/e-Psi) */
.sobre-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    background-color: #ffffff;
    border-radius: 6px;
    padding: 0.85rem 1.15rem;
    width: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.sobre-badge-icon {
    width: 36px;
    height: 36px;
    color: #1f8a4c;
    flex-shrink: 0;
}

.sobre-badge-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

/* Responsividade Mobile & Tablet */
@media (max-width: 992px) {
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .sobre-visual {
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .sobre-section {
        padding: 16px 0;
    }

    .sobre-title {
        margin-bottom: 1.25rem;
    }

    .sobre-bio {
        gap: 1rem;
        margin-bottom: 1.75rem;
    }

    .sobre-bio p {
        font-size: 0.9375rem;
        line-height: 1.68;
    }

    .sobre-badge {
        padding: 0.75rem 1rem;
    }

    .sobre-badge-icon {
        width: 30px;
        height: 30px;
    }

    .sobre-badge-text {
        font-size: 0.9rem;
    }

    .sobre-actions {
        margin-top: 1.5rem;
        width: 100%;
    }

    .sobre-btn-cta {
        width: 100%;
    }
}

/* -------------------------------------------------------------
   SEÇÃO: COMO FUNCIONA O ATENDIMENTO
   ------------------------------------------------------------- */
.como-funciona-section {
    background-color: var(--bg-main);
    padding: 48px 0;
    position: relative;
}

.como-funciona-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 3.5rem;
}

.como-funciona-eyebrow {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary-light);
    margin-bottom: 0.75rem;
}

.como-funciona-title {
    font-family: var(--font-title);
    font-size: var(--fs-lg);
    font-weight: 500;
    line-height: 1.25;
    color: #43545e;
    margin-bottom: 0.85rem;
}

.como-funciona-subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: 400;
    line-height: 1.6;
    color: #52636d;
    margin: 0 auto;
}

/* Grid de Etapas */
.como-funciona-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.etapa-card {
    background-color: var(--white);
    border: 1px solid rgba(153, 173, 191, 0.25);
    border-radius: 12px;
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.etapa-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-medium);
}

.etapa-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.etapa-number {
    font-family: var(--font-title);
    font-size: var(--fs-lg);
    font-weight: 500;
    line-height: 1;
    color: var(--color-primary);
    opacity: 0.45;
}

.etapa-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: rgba(85, 106, 115, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

.etapa-card:hover .etapa-icon-box {
    background-color: var(--color-accent);
    color: #ffffff;
}

.etapa-icon {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 1.6;
}

.etapa-title {
    font-family: var(--font-title);
    letter-spacing: 0.08em;
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.3;
    color: #232359;
    margin-bottom: 1rem;
}

.etapa-text {
    font-family: var(--font-body);
    letter-spacing: 0.08em;
    color: #000000;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

/* Card de Reembolso */
.como-funciona-reembolso {
    background-color: var(--white);
    border: 1px solid rgba(153, 173, 191, 0.25);
    border-radius: 12px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.como-funciona-reembolso:hover {
    border-color: var(--color-secondary);
}

.reembolso-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(171, 191, 170, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.reembolso-icon {
    width: 24px;
    height: 24px;
    stroke: var(--color-primary);
    stroke-width: 1.6;
}

.reembolso-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.reembolso-text {
    font-family: var(--font-body);
    letter-spacing: 0.08em;
    color: #000000;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

.reembolso-text strong {
    font-weight: 500;
    color: #232359;
}

.reembolso-link {
    font-family: var(--font-ui);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: var(--transition-smooth);
    width: fit-content;
}

.reembolso-link:hover {
    color: var(--color-primary-light);
}

/* Responsividade */
@media (max-width: 1024px) {
    .como-funciona-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .como-funciona-section {
        padding: 32px 0;
    }

    .como-funciona-header {
        text-align: left;
        margin-bottom: 2.25rem;
    }

    .como-funciona-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.75rem;
    }

    .etapa-card {
        padding: 24px 20px;
    }

    .como-funciona-reembolso {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 1rem;
    }
}

/* -------------------------------------------------------------
   SEÇÃO MÉTODO CLÍNICO (ABAS / TABS)
   ------------------------------------------------------------- */
.metodo-section {
    background-color: var(--bg-surface);
    padding: 48px 0;
}

.metodo-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
}

.metodo-eyebrow {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary-light);
    margin-bottom: 0.75rem;
}

.metodo-title {
    font-family: var(--font-title);
    font-size: var(--fs-lg);
    font-weight: 500;
    line-height: 1.25;
    color: #43545e;
    margin-bottom: 0.85rem;
}

.metodo-subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: 400;
    line-height: 1.6;
    color: #52636d;
    margin: 0 auto;
}

/* Componente de Abas */
.method-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.tab-btn {
    font-family: var(--font-title);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: #43545e;
    background-color: transparent;
    border: 1px solid rgba(153, 173, 191, 0.4);
    border-radius: 30px;
    padding: 12px 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
    outline: none;
    line-height: 1.2;
}

.tab-btn:hover {
    background-color: rgba(85, 106, 115, 0.08);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.tab-btn.active {
    background-color: var(--color-primary);
    color: var(--white);
    border-color: var(--color-primary);
    box-shadow: 0 4px 14px rgba(85, 106, 115, 0.22);
}

.tab-btn:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Painéis de Conteúdo */
.tab-panels {
    position: relative;
}

.tab-panel {
    background-color: var(--bg-main);
    border-radius: 12px;
    border: 1px solid rgba(153, 173, 191, 0.25);
    padding: clamp(36px, 4.5vw, 48px);
    box-shadow: var(--shadow-soft);
    display: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.tab-panel-title {
    font-family: var(--font-title);
    font-size: var(--fs-md);
    font-weight: 500;
    color: #43545e;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.tab-panel-text {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: 400;
    line-height: 1.6;
    color: #52636d;
}

/* Rodapé do Painel com CTA */
.tab-panel-footer {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(153, 173, 191, 0.2);
    display: flex;
    align-items: center;
}

.tab-panel-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--color-primary);
    color: var(--white);
    font-family: var(--font-title);
    font-size: var(--fs-sm);
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 30px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 14px rgba(85, 106, 115, 0.2);
    text-decoration: none;
    line-height: 1;
}

.tab-panel-cta:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(85, 106, 115, 0.28);
    color: var(--white);
}

.tab-cta-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
}

.tab-panel-cta:hover .tab-cta-icon {
    transform: translateX(4px);
}

/* Responsividade */
@media (max-width: 768px) {
    .metodo-section {
        padding: 48px 0;
    }

    .metodo-header {
        text-align: left;
        margin-bottom: 2rem;
    }

    .tab-nav {
        justify-content: flex-start;
        gap: 0.5rem;
    }

    .tab-btn {
        padding: 10px 16px;
        font-size: var(--fs-xs);
    }

    .tab-panel {
        padding: 28px 20px;
    }

    .tab-panel-cta {
        width: 100%;
        justify-content: center;
    }
}

/* -------------------------------------------------------------
   SEÇÃO: PERGUNTAS FREQUENTES (FAQ ACCORDION)
   ------------------------------------------------------------- */
.faq-section {
    background-color: #566a73;
    padding: 48px 0;
}

.faq-container-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    font-family: var(--font-title);
    font-size: var(--fs-lg);
    font-weight: 500;
    line-height: 1.25;
    color: #FFFFFF;
    margin-bottom: 0.85rem;
}

.faq-subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    background-color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(22, 36, 44, 0.1);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(22, 36, 44, 0.18);
}

.faq-item.is-open {
    border-color: rgba(85, 106, 115, 0.25);
    box-shadow: 0 8px 28px rgba(22, 36, 44, 0.16);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 22px 24px;
    cursor: pointer;
    text-align: left;
    outline: none;
    transition: var(--transition-smooth);
}

.faq-question:focus-visible {
    outline: 2px solid #FFFFFF;
    outline-offset: 2px;
}

.faq-question span {
    font-family: var(--font-title);
    font-size: var(--fs-md);
    font-weight: 500;
    line-height: 1.35;
    color: #232359;
    transition: color 0.2s ease;
}

.faq-question:hover span,
.faq-question[aria-expanded="true"] span {
    color: #556a73;
}

.faq-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: #556a73;
    stroke-width: 2;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-icon,
.faq-item.is-open .faq-icon {
    transform: rotate(180deg);
    color: #232359;
}

.faq-answer {
    padding: 0 24px 22px 24px;
    animation: faqFadeIn 0.3s ease-out forwards;
}

.faq-answer p {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: 400;
    line-height: 1.65;
    color: #43545e;
    margin: 0;
}

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .faq-section {
        padding: 48px 0;
    }

    .faq-header {
        text-align: left;
        margin-bottom: 2rem;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-question span {
        font-size: 1.1rem;
    }

    .faq-answer {
        padding: 0 20px 18px 20px;
    }
}

/* -------------------------------------------------------------
   SEÇÃO LOCALIZAÇÃO & ATENDIMENTO PRESENCIAL (#localizacao)
   ------------------------------------------------------------- */
.localizacao-section {
    background-color: var(--bg-surface);
    padding: clamp(96px, 8vw, 110px) 0;
    position: relative;
}

.localizacao-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.localizacao-eyebrow {
    font-family: var(--font-ui);
    font-size: var(--fs-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-primary-light);
    margin-bottom: 0.75rem;
    display: inline-block;
}

.localizacao-title {
    font-family: var(--font-title);
    font-size: var(--fs-lg);
    font-weight: 500;
    line-height: 1.25;
    color: #43545e;
    margin-bottom: 1rem;
}

.localizacao-subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: 400;
    line-height: 1.6;
    color: #52636d;
    margin-bottom: 2rem;
}

.localizacao-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.location-card,
.contact-card {
    background-color: var(--bg-main);
    border: 1px solid rgba(153, 173, 191, 0.25);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.location-card:hover,
.contact-card:hover {
    box-shadow: var(--shadow-medium);
    border-color: rgba(85, 106, 115, 0.35);
    transform: translateY(-2px);
}

.location-card .card-icon,
.contact-card .card-icon {
    color: var(--color-primary);
    background-color: rgba(85, 106, 115, 0.08);
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-card .card-content,
.contact-card .card-content {
    flex: 1;
}

.card-title {
    font-family: var(--font-title);
    font-size: var(--fs-md);
    font-weight: 500;
    color: #43545e;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.card-text {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: 400;
    line-height: 1.6;
    color: #52636d;
    margin: 0 0 10px 0;
}

.location-route-link {
    font-family: var(--font-ui);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition-smooth);
}

.location-route-link:hover {
    color: var(--color-primary-light);
    transform: translateX(3px);
}

.contact-phone {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: 500;
    color: #43545e;
    margin: 0 0 14px 0;
}

.btn-whatsapp-local {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--white);
    font-family: var(--font-ui);
    font-size: var(--fs-sm);
    font-weight: 500;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(85, 106, 115, 0.2);
    transition: var(--transition-smooth);
}

.btn-whatsapp-local:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(85, 106, 115, 0.28);
}

.btn-whatsapp-local:focus-visible,
.location-route-link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Coluna do Mapa Integrado */
.localizacao-map {
    height: 100%;
    display: flex;
}

.map-wrapper {
    width: 100%;
    min-height: 420px;
    border-radius: 16px;
    border: 1px solid rgba(153, 173, 191, 0.25);
    box-shadow: var(--shadow-subtle);
    overflow: hidden;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    border: 0;
}

/* Responsividade Mobile */
@media (max-width: 850px) {
    .localizacao-section {
        padding: 64px 0;
    }

    .localizacao-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .map-wrapper,
    .map-wrapper iframe {
        min-height: 300px;
        height: 320px;
    }
}

/* -------------------------------------------------------------
   SEÇÃO: RODAPÉ INSTITUCIONAL (FOOTER)
   ------------------------------------------------------------- */
.site-footer {
    background-color: #2C3539;
    color: #E2E8F0;
    padding: 80px 0 40px 0;
    font-family: var(--font-body);
    border-top: 1px solid rgba(153, 173, 191, 0.15);
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Grid Principal (4 Colunas) */
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 1.1fr 1fr;
    gap: 2.5rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* Coluna 1: Identificação Profissional & CRP */
.footer-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    margin-bottom: 0.85rem;
}

.footer-brand-name {
    font-family: var(--font-title);
    font-size: var(--fs-md);
    font-weight: 500;
    color: #FFFFFF;
    margin: 0 0 0.35rem 0;
    line-height: 1.3;
}

.footer-brand-role {
    font-family: var(--font-ui);
    font-size: var(--fs-sm);
    font-weight: 400;
    color: var(--color-accent);
    margin: 0 0 1rem 0;
}

.footer-crp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(171, 191, 170, 0.3);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: var(--fs-xs);
    font-weight: 500;
    color: #F8FAFC;
    margin-bottom: 1.25rem;
    width: fit-content;
}

.footer-crp-icon {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.footer-brand-desc {
    font-size: var(--fs-sm);
    font-weight: 400;
    color: #CBD5E1;
    line-height: 1.6;
    margin: 0;
}

/* Títulos de Colunas */
.footer-col-title {
    font-family: var(--font-title);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: #FFFFFF;
    margin: 0 0 1.25rem 0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Listas e Links */
.footer-nav-list,
.footer-legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-list a,
.footer-legal-list a,
.footer-contact-item a {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 400;
    color: #CBD5E1;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-nav-list a:hover,
.footer-legal-list a:hover,
.footer-contact-item a:hover {
    color: var(--color-accent);
    transform: translateX(3px);
}

/* Informações de Contato */
.footer-contact-info {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-contact-item {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 400;
    color: #CBD5E1;
    line-height: 1.5;
    margin: 0;
}

.footer-contact-item .contact-label {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 500;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

/* Faixa Ética e Aviso de Emergência (CFP / Google Ads) */
.footer-emergency-alert {
    background-color: rgba(18, 26, 30, 0.65);
    border: 1px solid rgba(171, 191, 170, 0.25);
    border-radius: var(--radius-sm);
    padding: 18px 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.emergency-icon-wrapper {
    flex-shrink: 0;
    padding-top: 2px;
}

.emergency-icon {
    width: 22px;
    height: 22px;
    color: var(--color-accent);
}

.emergency-text {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 400;
    line-height: 1.6;
    color: #E2E8F0;
    margin: 0;
}

.emergency-text strong {
    font-weight: 600;
    color: #FFFFFF;
}

.emergency-text a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: var(--transition-smooth);
}

.emergency-text a:hover {
    color: #FFFFFF;
}

/* Barra Inferior de Direitos (Bottom Bar) */
.footer-bottom-bar {
    border-top: 1px solid rgba(153, 173, 191, 0.2);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 500;
    color: #94A3B8;
    margin: 0;
}

.footer-compliance {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 400;
    line-height: 1.6;
    color: #64748B;
    margin: 0;
}

/* Responsividade do Rodapé */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 2rem;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding: 60px 0 30px 0;
    }

    .footer-container {
        gap: 2.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-emergency-alert {
        flex-direction: column;
        gap: 10px;
        padding: 16px;
    }

    .footer-bottom-bar {
        text-align: left;
    }
}

/* -------------------------------------------------------------
   PÁGINA INSTITUCIONAL / POLÍTICA DE PRIVACIDADE (LGPD)
   ------------------------------------------------------------- */
.privacy-body {
    background-color: var(--bg-main);
    color: var(--text-main);
    min-height: 100vh;
}

.privacy-main {
    padding: clamp(2.5rem, 5vw, 5rem) 1.5rem;
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-nav {
    margin-bottom: 2.5rem;
}

.privacy-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
}

.privacy-back-link:hover {
    color: var(--color-primary-light);
    text-decoration: underline;
    transform: translateX(-3px);
}

.privacy-back-icon {
    display: none;
}

.privacy-header {
    border-bottom: 1px solid rgba(85, 106, 115, 0.18);
    padding-bottom: 2rem;
    margin-bottom: 3rem;
}

.privacy-eyebrow {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.privacy-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 600;
    line-height: 1.25;
    color: #232359;
    margin: 0 0 1rem 0;
}

.privacy-date {
    font-family: var(--font-ui);
    font-size: var(--fs-xs);
    color: #52636d;
    margin: 0;
}

.privacy-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.privacy-section h2 {
    font-family: var(--font-title);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    color: #232359;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.35;
    letter-spacing: 0.02em;
}

.privacy-section:first-child h2 {
    margin-top: 0;
}

.privacy-section p {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: 1.7;
    color: #333333;
    margin-bottom: 1rem;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-section ul,
.privacy-section ol {
    margin: 1rem 0 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.privacy-section li {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: 1.7;
    color: #333333;
}

.privacy-section strong {
    color: #111111;
}

.privacy-section a {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.privacy-section a:hover {
    color: var(--color-primary-light);
}

.privacy-card-info {
    background-color: var(--bg-surface);
    border: 1px solid rgba(153, 173, 191, 0.35);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.privacy-card-info p {
    margin: 0;
    font-size: var(--fs-sm);
    line-height: 1.6;
}

.privacy-highlight-box {
    background-color: #f7faf7;
    border-left: 4px solid var(--color-accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.5rem;
    margin: 1rem 0;
}

.privacy-highlight-box h3 {
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 600;
    color: #232359;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.privacy-highlight-box p {
    font-size: var(--fs-base);
    line-height: 1.7;
    color: #2e383c;
    margin-bottom: 0.75rem;
}

.privacy-highlight-box p:last-child {
    margin-bottom: 0;
}

.privacy-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(85, 106, 115, 0.18);
}

.privacy-footer-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.privacy-footer-copy {
    font-family: var(--font-ui);
    font-size: var(--fs-xs);
    color: #43545e;
    margin: 0;
}

.privacy-footer-ethics {
    font-family: var(--font-ui);
    font-size: clamp(0.7rem, 0.65rem + 0.2vw, 0.8rem);
    color: #61788c;
    line-height: 1.5;
    margin: 0;
}

.privacy-footer-back {
    margin-top: 1rem;
}

/* -------------------------------------------------------------
   BANNER DE CONSENTIMENTO DE COOKIES (LGPD)
   ------------------------------------------------------------- */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 440px;
    background: rgba(243, 245, 244, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(153, 173, 191, 0.35);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(44, 53, 57, 0.15);
    padding: 1.1rem 1.25rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-banner-content {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.cookie-banner-text {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    color: #43545e;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner-link {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.cookie-banner-link:hover {
    color: var(--color-primary-light);
}

.btn-cookie-accept {
    align-self: flex-end;
    background-color: var(--color-primary);
    color: var(--white);
    font-family: var(--font-ui);
    font-size: var(--fs-xs);
    font-weight: 500;
    padding: 8px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(85, 106, 115, 0.2);
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-cookie-accept:hover {
    background-color: var(--color-primary-light);
    box-shadow: 0 4px 10px rgba(85, 106, 115, 0.28);
}

.btn-cookie-accept:active {
    transform: scale(0.98);
}

@media (max-width: 640px) {
    .cookie-banner {
        bottom: 12px;
        right: 12px;
        left: 12px;
        max-width: none;
        padding: 1rem 1rem;
    }

    .cookie-banner-content {
        gap: 0.75rem;
    }

    .btn-cookie-accept {
        width: 100%;
        text-align: center;
        padding: 10px 18px;
    }
}