/* ==========================================================================
   Design System & Configurações Globais
   ========================================================================== */

:root {
    /* Paleta Oficial Kátia Marquete */
    --color-primary: #ABADD4;       /* Lilás/azul pastel */
    --color-secondary: #F4A7C8;     /* Rosa pastel */
    --color-accent: #9CD5DE;        /* Azul piscina/verde-água pastel */
    --color-bg-light: #CEE9EE;      /* Azul gelo/claro */
    
    /* Tons Neutros Refinados */
    --color-bg-white: #FFFFFF;
    --color-bg-soft: #F5F9FA;        /* Fundo ultra leve, suave e frio */
    --color-text-dark: #899A73;      /* Cinza azulado profundo alterado para verde para teste */
    --color-text-body: #899A73;      /* Cinza médio/escuro alterado para verde para teste */
    --color-text-light: #7E8E9F;     /* Cinza claro para metadados e legendas */
    
    /* Detalhe Premium (Dourado Metálico do Logotipo) */
    --color-gold: #C5A059;
    --color-gold-light: #E2CE9B;
    --color-gold-dark: #9F7E3C;
    --color-gold-overlay: rgba(197, 160, 89, 0.08);

    /* Tipografia */
    --font-title: 'Cormorant Garamond', 'Bravely', Georgia, serif;
    --font-body: 'Montserrat', 'Caviar Dreams', system-ui, -apple-system, sans-serif;
    
    /* Transições & Sombras */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
    --shadow-soft: 0 10px 30px rgba(44, 62, 80, 0.05);
    --shadow-medium: 0 15px 40px rgba(44, 62, 80, 0.08);
    --shadow-premium: 0 20px 50px rgba(197, 160, 89, 0.1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-pill: 50px;
    
    /* Altura do Header */
    --header-height: 85px;
}

/* Reset Geral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-body);
    background-color: var(--color-bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

strong, b {
    color: #899A73;
}

/* Links & Acessibilidade */
a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

a:focus-visible, button:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 4px;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ==========================================================================
   Componentes Comuns (Botões, Tags, Linhas)
   ========================================================================== */

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border-radius: var(--border-radius-pill);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.05rem;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-bg-white);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.25);
}

.btn-primary:hover {
    background-color: var(--color-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(197, 160, 89, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-dark);
    border-color: rgba(44, 62, 80, 0.15);
}

.btn-secondary:hover {
    background-color: var(--color-bg-soft);
    border-color: var(--color-gold);
    color: var(--color-gold-dark);
    transform: translateY(-3px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Tags de Seção */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold-dark);
    background-color: var(--color-gold-overlay);
    padding: 6px 16px;
    border-radius: var(--border-radius-pill);
    margin-bottom: 15px;
}

.hero-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-dark);
    border-left: 3px solid var(--color-gold);
    padding-left: 12px;
    margin-bottom: 20px;
}

/* Títulos de Seção */
.section-title {
    font-family: var(--font-title);
    font-size: 2.6rem;
    font-weight: 600;
    color: #899A73;
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-body);
    max-width: 700px;
    font-weight: 300;
}

.section-header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}

/* Linhas Decorativas */
.title-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    margin-bottom: 30px;
    border-radius: 2px;
}

.title-line-center {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold) 50%, transparent);
    margin: 25px auto 0 auto;
    border-radius: 2px;
}

/* ==========================================================================
   Header (Navegação Glassmorphism)
   ========================================================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1000;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.main-header.scrolled {
    height: 75px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.05);
}

.header-container {
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--color-gold-light);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.logo-area:hover .logo-img {
    transform: rotate(5deg) scale(1.05);
    border-color: var(--color-gold);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold-dark);
    margin-top: 2px;
}

/* Menu de Navegação */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text-body);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--color-text-dark);
}

/* Linha animada do menu */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-text-dark);
    font-weight: 600;
}

/* Menu Mobile Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-dark);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Animação Hamburger para X */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* ==========================================================================
   Hero Section (Abertura)
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 40px);
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 20%, rgba(206, 233, 238, 0.4) 0%, rgba(244, 167, 200, 0.15) 45%, rgba(255, 255, 255, 1) 90%);
    overflow: hidden;
}

/* Detalhes de Fundo Abstratos */
.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(171, 173, 212, 0.25) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-container-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}

.hero-content {
    animation: fadeInUp 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-title {
    font-family: var(--font-title);
    font-size: 3.8rem;
    font-weight: 600;
    color: #899A73;
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--color-text-body);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

/* Coluna de Imagem da Psicóloga */
.hero-image-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    animation: fadeIn 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.hero-image {
    width: 100%;
    border-radius: 120px 40px 120px 40px; /* Bordas orgânicas e fluidas */
    box-shadow: var(--shadow-medium);
    border: 8px solid var(--color-bg-white);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
    object-fit: cover;
    aspect-ratio: 4 / 3.4;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.02);
    box-shadow: var(--shadow-premium);
}

/* Moldura Traseira do Hero */
.hero-image-accent {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border-radius: 120px 40px 120px 40px;
    border: 2px solid var(--color-gold);
    z-index: 1;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.hero-image-wrapper:hover .hero-image-accent {
    transform: translate(-10px, 10px);
    background-color: rgba(197, 160, 89, 0.03);
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-light);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 3;
    transition: var(--transition-smooth);
}

.scroll-down:hover {
    color: var(--color-gold-dark);
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid currentColor;
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: currentColor;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.5s infinite;
}

.arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    animation: arrowPulse 1.5s infinite;
}

/* ==========================================================================
   Sobre a Profissional
   ========================================================================== */

.about-section {
    padding: 120px 0;
    background-color: var(--color-bg-white);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.subtitle-crp {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-gold-dark);
    margin-bottom: 10px;
}

.about-description p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--color-text-body);
}

.about-description strong {
    font-weight: 600;
    color: #899A73;
}

.ethical-notice {
    font-size: 0.95rem;
    border-left: 2px solid var(--color-primary);
    padding-left: 15px;
    margin-top: 30px;
    color: var(--color-text-light);
}

/* Badges sobre */
.about-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 35px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-icon {
    width: 24px;
    height: 24px;
    background-color: rgba(171, 173, 212, 0.15);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
}

.badge-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-dark);
}

/* Coluna de Especialidades Acadêmicas (Info Card) */
.about-info-column {
    display: flex;
    justify-content: center;
}

.info-card {
    background-color: var(--color-bg-soft);
    padding: 45px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(206, 233, 238, 0.3);
    width: 100%;
}

.info-card-title {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: #899A73;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-list li {
    display: flex;
    gap: 20px;
    position: relative;
}

/* Timeline vertical de graduações */
.info-list li::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 7px;
    width: 1px;
    height: calc(100% + 10px);
    background-color: rgba(197, 160, 89, 0.2);
}

.info-list li:last-child::before {
    display: none;
}

.info-list li .dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--color-bg-white);
    border: 3px solid var(--color-gold);
    flex-shrink: 0;
    z-index: 2;
    margin-top: 4px;
}

.info-list li h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.info-list li p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-text-body);
    line-height: 1.5;
}

/* ==========================================================================
   Especialidades (Cards)
   ========================================================================== */

.specialties-section {
    padding: 120px 0;
    background-color: var(--color-bg-soft);
}



.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.specialty-card {
    background-color: var(--color-bg-white);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.01);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.specialty-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(197, 160, 89, 0.15);
}

.card-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.specialty-card:hover .card-icon-wrapper {
    transform: scale(1.08) rotate(3deg);
}

.specialty-card-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text-dark);
    margin-bottom: 15px;
}

.specialty-card-text {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text-body);
}

/* ==========================================================================
   Atendimento / Focos de Atendimento
   ========================================================================== */

.treatment-section {
    padding: 120px 0;
    background-color: var(--color-bg-white);
}

/* Nova Seção de Acolhimento Emocional (#atendimento) */
.emotional-intro-block {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px auto;
}

.emotional-intro-block .section-subtitle {
    margin: 20px auto 0 auto;
    text-align: center;
}

/* Grade de Cards Emocionais */
.emotional-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.emotional-card {
    background-color: var(--color-bg-white);
    border: 1px solid rgba(206, 233, 238, 0.3);
    padding: 35px 25px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

/* Um detalhe visual sutil para destacar os cards */
.emotional-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--color-primary);
    opacity: 0;
    transition: var(--transition-fast);
}

.emotional-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(197, 160, 89, 0.2);
}

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

.emotional-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(171, 173, 212, 0.1); /* 10% da color-primary */
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.emotional-card:hover .emotional-card-icon {
    background-color: rgba(197, 160, 89, 0.1); /* 10% da color-gold */
    color: var(--color-gold);
}

.emotional-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.emotional-card p {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text-body);
}

/* Bloco de Transição e CTA */
.transition-cta-block {
    text-align: center;
    max-width: 800px;
    margin: 80px auto;
    padding: 50px 40px;
    background-color: var(--color-bg-soft);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(206, 233, 238, 0.2);
    box-shadow: var(--shadow-soft);
}

.transition-text {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text-dark);
    margin-bottom: 35px;
}

/* Formatos de Atendimento Reestruturados */
.process-modality-block {
    margin-top: 100px;
    border-top: 1px solid rgba(206, 233, 238, 0.5);
    padding-top: 60px;
}

.modality-block-header {
    text-align: center;
    margin-bottom: 50px;
}

.modality-block-header .modality-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold-dark);
    display: block;
    margin-bottom: 10px;
}

.modality-block-header h3 {
    font-family: var(--font-title);
    font-size: 2.2rem;
    color: var(--color-text-dark);
    font-weight: 500;
    margin-top: 10px;
}

.modality-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.modality-option-card {
    display: flex;
    gap: 24px;
    background-color: var(--color-bg-white);
    padding: 35px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(206, 233, 238, 0.3);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.modality-option-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(197, 160, 89, 0.2);
}

.modality-option-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background-color: rgba(197, 160, 89, 0.08);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.modality-option-card:hover .modality-option-icon {
    background-color: var(--color-gold);
    color: var(--color-bg-white);
}

.modality-option-details h4 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.modality-option-details p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text-body);
}

.modality-option-details strong {
    color: #899A73;
    font-weight: 500;
}

/* ==========================================================================
   Espaço Terapêutico (Galeria)
   ========================================================================== */

.gallery-section {
    padding: 120px 0;
    background-color: var(--color-bg-soft);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    border: 4px solid var(--color-bg-white);
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-gold-light);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(44, 62, 80, 0.8) 0%, rgba(44, 62, 80, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.zoom-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 300;
    box-shadow: var(--shadow-soft);
    transform: scale(0.7);
    transition: var(--transition-smooth);
}

.gallery-item:hover .zoom-icon {
    transform: scale(1);
}

.gallery-caption {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-bg-white);
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* ==========================================================================
   Chamada para Ação (CTA Central)
   ========================================================================== */

.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(171, 173, 212, 0.7) 0%, rgba(206, 233, 238, 0.5) 100%), url('../espaco3.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito parallax sofisticado */
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.cta-content-card {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 60px 80px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    max-width: 800px;
}

.cta-title {
    font-family: var(--font-title);
    font-size: 2.6rem;
    font-weight: 500;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-text-body);
    margin-bottom: 35px;
    line-height: 1.7;
}

.btn-cta-whatsapp {
    background-color: #25D366;
    color: var(--color-bg-white);
    border: none;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-cta-whatsapp:hover {
    background-color: #20BA56;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

/* ==========================================================================
   Instagram Section (Visual Mockup de Celular)
   ========================================================================== */

.instagram-section {
    padding: 120px 0;
    background-color: var(--color-bg-white);
}

.instagram-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.instagram-text p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 35px;
    line-height: 1.8;
}

/* Mockup de Telefone */
.insta-phone-mockup {
    width: 300px;
    height: 600px;
    border-radius: 40px;
    background-color: var(--color-text-dark);
    box-shadow: var(--shadow-medium);
    padding: 12px;
    margin: 0 auto;
    border: 4px solid #34495e;
    position: relative;
}

.phone-header {
    height: 25px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.speaker {
    width: 60px;
    height: 4px;
    background-color: #1a252f;
    border-radius: 2px;
}

.camera {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #1a252f;
}

.phone-screen {
    width: 100%;
    height: calc(100% - 35px);
    border-radius: 30px;
    background-color: var(--color-bg-white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.insta-app-header {
    height: 44px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.insta-app-title {
    font-family: var(--font-title);
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--color-text-dark);
}

.insta-app-icons {
    font-size: 0.8rem;
    display: flex;
    gap: 10px;
}

.insta-profile-bar {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.insta-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-secondary);
    padding: 2px;
}

.insta-profile-meta {
    display: flex;
    flex-direction: column;
}

.insta-username {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.insta-stats {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-top: 3px;
}

.insta-grid-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    padding: 0 2px 2px 2px;
    flex-grow: 1;
    background-color: #fafafa;
}

.insta-grid-item {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    text-align: center;
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--color-text-dark);
    border-radius: 2px;
    opacity: 0.85;
    transition: var(--transition-fast);
}

.insta-grid-item:hover {
    opacity: 1;
    transform: scale(1.02);
}

/* ==========================================================================
   Contato & FAQs
   ========================================================================== */

.contact-section {
    padding: 120px 0;
    background-color: var(--color-bg-soft);
}

.contact-card-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-block {
    background-color: var(--color-bg-white);
    padding: 45px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.01);
}

.contact-info-block h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--color-text-dark);
    margin-bottom: 15px;
}

.contact-intro {
    font-size: 0.95rem;
    color: var(--color-text-body);
    margin-bottom: 35px;
    font-weight: 300;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.method-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-gold-overlay);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-data {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
}

.method-val {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

a.method-val:hover {
    color: var(--color-gold-dark);
    transform: translateX(3px);
}

/* FAQ Accordion */
.contact-faq-block h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--color-text-dark);
    margin-bottom: 30px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    border: 1px solid rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item.active {
    border-color: rgba(197, 160, 89, 0.15);
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px 30px;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-gold);
    transition: var(--transition-smooth);
    line-height: 1;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    color: var(--color-text-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    background-color: rgba(245, 249, 250, 0.5);
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
    color: var(--color-text-body);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.main-footer {
    background-color: #899A73; /* Verde Oliva/Folha Elegante */
    color: rgba(255, 255, 255, 0.85);
    padding: 80px 0 30px 0;
    font-size: 0.9rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.footer-logo-name {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--color-bg-white);
    letter-spacing: 0.5px;
}

.footer-tagline {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
}

.footer-crp {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 4px 12px;
    border-radius: var(--border-radius-sm);
    width: max-content;
    color: var(--color-bg-white);
}

/* Colunas de Link */
.footer-top h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-bg-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.footer-nav ul, .footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav a:hover, .footer-contact a:hover {
    color: var(--color-secondary); /* Hover com o rosa pastel da paleta cria um contraste harmônico */
    transform: translateX(3px);
}

.footer-contact li {
    display: flex;
    flex-direction: column;
}

.footer-contact strong {
    font-size: 0.8rem;
    color: var(--color-bg-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-ethics-note {
    font-style: italic;
    max-width: 600px;
}

/* ==========================================================================
   Botão Flutuante de WhatsApp
   ========================================================================== */

.btn-whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--color-bg-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    cursor: pointer;
    transition: var(--transition-smooth);
    animation: floatAnimation 3s ease-in-out infinite;
}

.btn-whatsapp-floating:hover {
    background-color: #20BA56;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* Distintivo / Badge lateral do WhatsApp (apenas desktop) */
.floating-badge {
    position: absolute;
    right: 70px;
    background-color: var(--color-bg-white);
    color: var(--color-text-dark);
    padding: 8px 16px;
    border-radius: var(--border-radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-smooth);
}

.btn-whatsapp-floating:hover .floating-badge {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ==========================================================================
   Lightbox (Galeria Modal)
   ========================================================================== */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: scaleUp 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 4px solid var(--color-bg-white);
    object-fit: contain;
}

.lightbox-caption {
    color: var(--color-bg-white);
    margin-top: 15px;
    font-family: var(--font-title);
    font-size: 1.4rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: var(--color-bg-white);
    background: transparent;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--color-secondary);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--color-bg-white);
    font-size: 3rem;
    cursor: pointer;
    padding: 20px;
    transition: var(--transition-fast);
}

.lightbox-nav:hover {
    color: var(--color-secondary);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ==========================================================================
   Animações (Keyframes)
   ========================================================================== */

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes scrollMouse {
    0% {
        opacity: 1;
        top: 6px;
    }
    50% {
        opacity: 0.3;
        top: 18px;
    }
    100% {
        opacity: 1;
        top: 6px;
    }
}

@keyframes arrowPulse {
    0%, 100% {
        opacity: 0.4;
        transform: rotate(45deg) translate(0, 0);
    }
    50% {
        opacity: 1;
        transform: rotate(45deg) translate(4px, 4px);
    }
}

/* ==========================================================================
   Responsividade (Media Queries)
   ========================================================================== */

/* Telas Grandes (Notebooks/Desktops menores) */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .about-grid, .treatment-grid, .instagram-grid {
        gap: 40px;
    }
    
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets (Telas Médias) */
@media (max-width: 991px) {
    :root {
        --header-height: 75px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    /* Hero */
    .hero-container-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-top: 20px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image-container {
        justify-content: center;
    }

    .hero-tag {
        border-left: none;
        border-bottom: 2px solid var(--color-gold);
        padding-left: 0;
        padding-bottom: 4px;
    }

    .scroll-down {
        display: none; /* Esconde indicador em telas menores */
    }

    /* Sobre */
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-info-column {
        order: -1; /* Exibe o card de resumo antes do texto no celular/tablet */
    }

    /* Especialidades */
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Atendimento */
    .emotional-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .modality-options-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Galeria */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Instagram */
    .instagram-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .instagram-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .instagram-text .title-line {
        margin: 0 auto 30px auto;
    }

    /* Contato */
    .contact-card-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-info {
        align-items: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-nav ul, .footer-contact ul {
        align-items: center;
    }
}

/* Celulares (Menu Hamburguer Ativo) */
@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Header & Menu Mobile */
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-bg-white);
        box-shadow: 0 15px 30px rgba(0,0,0,0.05);
        transition: var(--transition-smooth);
        padding: 40px;
        z-index: 999;
    }

    .main-nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .nav-link {
        font-size: 1.15rem;
    }

    .header-cta {
        display: none; /* Oculta o CTA do header no celular para liberar espaço */
    }

    /* Hero */
    .hero-title {
        font-size: 2.3rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    /* Especialidades */
    .specialties-grid {
        grid-template-columns: 1fr;
    }
    
    .specialty-card {
        padding: 30px;
    }

    /* Atendimento & Focos */
    .emotional-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .transition-cta-block {
        padding: 35px 20px;
        margin: 50px auto;
    }

    .process-modality-block {
        margin-top: 60px;
        padding-top: 40px;
    }

    .modality-block-header h3 {
        font-size: 1.8rem;
    }

    .modality-option-card {
        padding: 25px;
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    /* Galeria */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* CTA Central */
    .cta-content-card {
        padding: 40px 25px;
    }
    
    .cta-title {
        font-size: 1.9rem;
    }

    /* Contato */
    .contact-info-block {
        padding: 30px 20px;
    }
    
    .faq-question {
        padding: 20px;
    }

    /* Botão flutuante WhatsApp menor no celular */
    .btn-whatsapp-floating {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }

    .floating-badge {
        display: none !important; /* Esconde a badge flutuante em celulares */
    }
}
