/* ==========================================================================
   HELENA ÁVILA - LUXURY MEDICAL & THERAPEUTIC WEBSITE STYLES
   ========================================================================== */

:root {
    /* Palette: Porcelain Ivory, Obsidian & Noble Bronze (Ellen Folly Clinical Luxury Blueprint) */
    --color-navy: #151619; /* Preto obsidiana para títulos e elementos de prestígio */
    --color-navy-light: #202227;
    --color-sage: #FAF8F5; /* Fundo suave porcelana */
    --color-sage-light: #FFFFFF;
    --color-terracotta: #8E6547; /* Bronze nobre / terracota refinado */
    --color-terracotta-hover: #755136;
    --color-terracotta-glow: rgba(142, 101, 71, 0.16);
    --color-accent-light: #F4EDE6;
    --color-botanical-sage: #45634E;
    --color-border-subtle: #E6DFD5;
    --color-border-focus: #C4B19F;
    
    --color-bg-main: #FAF8F5; /* Fundo porcelana nobre */
    --color-bg-surface: #FFFFFF;
    --color-bg-card: #FFFFFF;
    
    --color-text-main: #151619;
    --color-text-body: #3A3835;
    --color-text-muted: #6E685F;
    
    /* Fonts: Cormorant Garamond (Editorial Serif) + Plus Jakarta Sans (Modern Medical Sans) */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Layout & Shadows */
    --container-width: 1240px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-pill: 100px;
    
    /* Sombras Hiper-Suaves para visual Premium Editorial */
    --shadow-subtle: 0 2px 10px rgba(21, 22, 25, 0.03);
    --shadow-card: 0 8px 24px rgba(21, 22, 25, 0.04);
    --shadow-hover: 0 20px 40px -12px rgba(21, 22, 25, 0.08);
    --shadow-glow: 0 8px 24px rgba(142, 101, 71, 0.15);
    
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Resets & Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-main);
    color: var(--color-text-body);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
    overflow: hidden !important;
    height: 100vh;
    touch-action: none;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--color-navy);
    line-height: 1.15;
    font-weight: 500; /* Mais fino, elegante e editorial */
}

.color-accent {
    color: var(--color-terracotta);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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



/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.75rem;
}

.section-padding {
    padding: 8rem 0; /* Aumentado para mais respiro (Whitespace) */
    position: relative;
    z-index: 1;
}

.text-center { text-align: center; }
.gradient-text {
    color: var(--color-terracotta);
}

/* Section Header Shared Component */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    margin-bottom: 0.75rem;
    background: var(--color-terracotta-glow);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-pill);
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-sage-light);
}

.section-title {
    font-size: 2.75rem; /* Menor e mais elegante */
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.8rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-terracotta {
    background: var(--color-terracotta);
    color: #FFFFFF;
}

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

.btn-glow {
    box-shadow: 0 4px 12px var(--color-terracotta-glow);
}

.btn-glow:hover {
    box-shadow: 0 14px 36px var(--color-terracotta-glow);
}

.btn-outline {
    background: transparent;
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
}

.btn-outline:hover {
    background: var(--color-navy);
    color: #FFFFFF;
}

.btn-secondary,
.btn-google-review {
    background: #FFFFFF;
    color: var(--color-navy);
    border: 1.5px solid rgba(22, 42, 59, 0.15);
    box-shadow: 0 4px 14px rgba(22, 42, 59, 0.06);
}

.btn-secondary:hover,
.btn-google-review:hover {
    background: #FFFFFF;
    color: var(--color-terracotta);
    border-color: var(--color-terracotta);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(193, 127, 95, 0.16);
}

.btn-large {
    padding: 1.1rem 2.2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-whatsapp-header {
    background: rgba(37, 211, 102, 0.1);
    color: #128C7E;
    border: 1px solid rgba(37, 211, 102, 0.25);
    padding: 0.65rem 1.3rem;
    font-size: 0.88rem;
}

.btn-whatsapp-header:hover {
    background: #25D366;
    color: #FFFFFF;
    border-color: #25D366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-solid {
    background: #25D366;
    color: #FFFFFF;
    font-weight: 600;
}

.btn-whatsapp-solid:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

/* ==========================================================================
   TOP READING PROGRESS BAR & TOP STATUS BAR (ELLEN FOLLY CLINICAL SIGNATURE)
   ========================================================================== */
#topProgressBar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #8E6547 0%, #45634E 50%, #C8A78A 100%);
    width: 0%;
    z-index: 1200;
    transition: width 0.08s ease-out;
}

.top-status-bar {
    background: #151619;
    color: #DFDAD2;
    font-size: 0.78rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1001;
}

.top-status-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.top-status-left {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.top-status-right {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #C8A78A;
}

.status-agenda {
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 0.02em;
}

.status-divider {
    color: rgba(255, 255, 255, 0.25);
}

.status-location {
    color: #BDB7AB;
}

.status-tag {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.status-link {
    color: #DFDAD2;
    transition: color 0.2s ease;
    text-decoration: none;
    font-weight: 600;
}

.status-link:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

@keyframes pulseRing {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 7px rgba(74, 222, 128, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.pulse-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ADE80;
    animation: pulseRing 2.2s infinite cubic-bezier(0.4, 0, 0.6, 1);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .top-status-bar {
        font-size: 0.72rem;
        padding: 0.45rem 0;
    }
    .top-status-inner {
        justify-content: center;
        gap: 0.5rem;
        text-align: center;
    }
    .status-location,
    .top-status-right .status-tag {
        display: none;
    }
}

/* --- 1. CABEÇALHO (HEADER) --- */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.95rem 0;
    transition: var(--transition);
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border-subtle);
    box-shadow: 0 2px 20px rgba(21, 22, 25, 0.03);
}

.header.scrolled {
    padding: 0.8rem 0;
    background: rgba(250, 248, 245, 0.98);
    box-shadow: 0 8px 30px rgba(21, 22, 25, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.logo-mark {
    width: 48px;
    height: 48px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    box-shadow: none;
    flex-shrink: 0;
    position: relative;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(197, 160, 89, 0.4));
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
    display: block;
}

.logo-link:hover .logo-img {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 14px rgba(197, 160, 89, 0.65));
}

.logo-name {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.1;
}

.logo-title {
    display: block;
    font-size: 0.68rem;
    color: var(--color-text-muted);
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.25;
}

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

@media (min-width: 992px) {
    .nav-list .mobile-only-nav {
        display: none !important;
    }
}

.nav-list a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--color-navy);
    position: relative;
    padding: 0.3rem 0;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--color-terracotta);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-terracotta);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-navy);
    cursor: pointer;
}

/* --- 2. SEÇÃO HERO (DOBRA PRINCIPAL) --- */
.hero {
    min-height: calc(100vh - 120px);
    padding-top: 3.5rem;
    padding-bottom: 5rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.bg-dots {
    background-color: var(--color-bg-main);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(197, 160, 89, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.03) 0%, transparent 40%),
        radial-gradient(var(--color-text-muted) 0.5px, transparent 0.5px);
    background-size: 100% 100%, 100% 100%, 20px 20px;
    background-position: 0 0, 0 0, 0 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.1rem;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-terracotta);
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 0 10px #25D366;
}

.hero-text h1 {
    font-size: 3.8rem; /* Elegante */
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-text-body);
    margin-bottom: 2.5rem;
    max-width: 92%;
}

.hero-actions {
    margin-bottom: 3.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(22, 42, 59, 0.08);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: rgba(22, 42, 59, 0.1);
    margin: 0 auto;
}

/* Hero Image & Floating Cards */
.hero-image-wrapper {
    position: relative;
}

.hero-card-frame {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 12px;
    background: #FFFFFF;
    box-shadow: 0 20px 50px rgba(22, 42, 59, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.hero-card-frame::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -15px;
    bottom: -15px;
    border: 2px solid rgba(197, 160, 89, 0.25);
    border-radius: var(--radius-lg);
    z-index: -1;
    transition: all 0.5s ease;
    pointer-events: none;
}

.hero-card-frame:hover::after {
    top: 12px;
    left: 12px;
    right: -8px;
    bottom: -8px;
    border-color: rgba(197, 160, 89, 0.45);
}

.hero-image-box {
    position: relative;
    border-radius: calc(var(--radius-lg) - 6px);
    overflow: hidden;
    height: 520px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.7s ease;
}

.hero-card-frame:hover .hero-img {
    transform: scale(1.03);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    z-index: 2;
    animation: float 4s ease-in-out infinite alternate;
}

.badge-1 {
    top: 40px;
    left: -15px; /* Reduzido para não vazar a tela */
    right: auto;
}

.badge-2 {
    bottom: 40px;
    right: -15px; /* Reduzido para não vazar a tela */
    left: auto;
    animation-delay: 2s;
}

.badge-icon {
    font-size: 1.5rem;
    background: var(--color-bg-surface);
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card strong {
    display: block;
    font-size: 0.88rem;
    color: var(--color-navy);
}

.floating-card small {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/* --- 3. SEÇÃO "SOBRE MIM" --- */
.about {
    background: var(--color-bg-surface);
}

.about-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.about-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(22, 42, 59, 0.95) 0%, rgba(22, 42, 59, 0.7) 70%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    color: #FFFFFF;
}

.exp-title {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
}

.exp-sub {
    display: block;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
}

.lead-paragraph {
    font-size: 1.12rem;
    font-weight: 500;
    color: var(--color-navy);
    margin-bottom: 1.25rem;
}

.about-body p {
    margin-bottom: 1.5rem;
    font-size: 1.02rem;
}

.luxury-quote {
    position: relative;
    margin: 2.5rem 0;
    padding: 2rem 2.2rem;
    background: #FFFFFF;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
    border-left: 4px solid var(--color-terracotta);
}

.quote-icon {
    color: rgba(193, 127, 95, 0.2);
    margin-bottom: 0.5rem;
}

.luxury-quote p {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-navy);
    line-height: 1.4;
    margin: 0 !important;
}

.signature-block {
    margin-top: 2rem;
    border-top: 1px solid rgba(22, 42, 59, 0.08);
    padding-top: 1.5rem;
}

.sig-name {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--color-terracotta);
    font-style: italic;
    line-height: 1;
}

.sig-role {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

/* --- 4. SEÇÃO "ESPECIALIDADES" --- */
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.specialty-card {
    position: relative;
    background: var(--color-bg-card);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(22, 42, 59, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.specialty-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(193, 127, 95, 0.2);
}

.card-glass-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(193, 127, 95, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transition: var(--transition);
}

.specialty-card:hover .card-glass-glow {
    width: 200px;
    height: 200px;
}

.card-icon-wrapper {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.12) 0%, rgba(193, 127, 95, 0.08) 100%);
    color: var(--color-terracotta);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.08);
}

.specialty-card:hover .card-icon-wrapper {
    background: var(--color-navy);
    color: #E8D3A2;
    border-color: var(--color-terracotta);
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 8px 20px rgba(22, 42, 59, 0.22);
}

.specialty-card h3 {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.specialty-card p {
    font-size: 0.95rem;
    color: var(--color-text-body);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.card-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-terracotta);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    background: rgba(193, 127, 95, 0.07);
    border: 1px solid rgba(193, 127, 95, 0.18);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    align-self: flex-start;
    margin-top: auto;
}

.specialty-card:hover .card-link {
    background: var(--color-terracotta);
    color: #FFFFFF;
    border-color: var(--color-terracotta);
    box-shadow: 0 4px 14px var(--color-terracotta-glow);
    transform: translateX(4px);
}

.specialty-card:hover .card-link span {
    transform: translateX(4px);
    transition: var(--transition);
}

/* Footnote Pills */
.specialties-pills {
    background: var(--color-bg-surface);
    padding: 2rem 2.5rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.pills-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pills-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.pill {
    background: #FFFFFF;
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-text-body);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(22, 42, 59, 0.04);
    transition: var(--transition);
}

.pill:hover {
    background: var(--color-navy);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* --- SUBSEÇÃO TRATAMENTOS ESPECIALIZADOS --- */
.treatments-container {
    margin-top: 5.5rem;
    padding-top: 4.5rem;
    border-top: 1px solid rgba(22, 42, 59, 0.08);
}

.treatments-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.treatment-card {
    background: #FFFFFF;
    border: 1px solid rgba(22, 42, 59, 0.06);
    border-radius: var(--radius-md);
    padding: 1.85rem 1.6rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.treatment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-terracotta), rgba(197, 160, 89, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
    border-color: rgba(193, 127, 95, 0.25);
}

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

.treatment-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(193, 127, 95, 0.1);
    color: var(--color-terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.treatment-card:hover .treatment-icon-box {
    background: var(--color-terracotta);
    color: #FFFFFF;
    transform: scale(1.05);
}

.treatment-card h4 {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.6rem;
}

.treatment-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.55;
    flex-grow: 1;
    margin: 0;
}

/* Reassurance Box */
.treatments-reassurance {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #FFFFFF;
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-left: 4px solid var(--color-terracotta);
    border-radius: var(--radius-md);
    padding: 1.75rem 2rem;
    box-shadow: 0 8px 24px rgba(22, 42, 59, 0.04);
    margin-top: 1rem;
}

.reassurance-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(193, 127, 95, 0.12);
    color: var(--color-terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
}

.reassurance-content h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.35rem;
}

.reassurance-content p {
    font-size: 0.92rem;
    color: var(--color-text-body);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .treatments-reassurance {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
}

/* --- 5. SEÇÃO "METODOLOGIA" --- */
.methodology {
    background: var(--color-bg-surface);
}

.methodology-slider-wrapper {
    position: relative;
    width: 100%;
    margin-top: 4rem;
}

.methodology-slider-wrapper .cred-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.methodology-slider-wrapper #methodPrevBtn {
    left: 0;
}

.methodology-slider-wrapper #methodNextBtn {
    right: 0;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.method-card {
    background: #FFFFFF;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-terracotta), rgba(197, 160, 89, 0.3));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.method-card:hover::before {
    transform: scaleX(1);
}

.method-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at top right, rgba(197, 160, 89, 0.06) 0%, transparent 70%);
    pointer-events: none;
    transition: var(--transition);
}

.method-card:hover::after {
    width: 200px;
    height: 200px;
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(197, 160, 89, 0.15);
}

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

.method-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1) 0%, rgba(193, 127, 95, 0.08) 100%);
    border: 1px solid rgba(197, 160, 89, 0.22);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.08);
}

.method-card:hover .method-icon-box {
    background: var(--color-navy);
    border-color: var(--color-terracotta);
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 6px 18px rgba(22, 42, 59, 0.2);
}

.method-card:hover .method-icon-box svg {
    stroke: #E8D3A2;
}

.method-number {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    color: rgba(197, 160, 89, 0.2);
    transition: var(--transition);
}

.method-card:hover .method-number {
    color: var(--color-terracotta);
    opacity: 0.7;
}

.method-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

.method-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-terracotta);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.method-card p {
    font-size: 0.95rem;
    color: var(--color-text-body);
}

/* --- SEÇÃO VÍDEOS YOUTUBE --- */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.video-card {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(22, 42, 59, 0.06);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(193, 127, 95, 0.3);
}

.video-thumb-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--color-navy);
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.video-card:hover .video-thumb {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(22, 42, 59, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #FFFFFF;
    transition: var(--transition);
}

.video-card:hover .play-overlay {
    background: rgba(22, 42, 59, 0.25);
}

.play-btn-circle {
    width: 54px;
    height: 54px;
    background: var(--color-terracotta);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(193, 127, 95, 0.4);
    transition: var(--transition);
}

.play-btn-circle svg {
    margin-left: 3px;
}

.video-card:hover .play-btn-circle {
    transform: scale(1.15);
    background: #FF0000;
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.5);
}

.play-overlay span {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(4px);
}

.video-info {
    padding: 1.75rem;
    flex-grow: 1;
}

.video-info h3 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--color-navy);
}

.video-info p {
    font-size: 0.9rem;
    color: var(--color-text-body);
}

.video-category-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-terracotta);
    background: rgba(193, 127, 95, 0.08);
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-pill);
    margin-bottom: 0.6rem;
    border: 1px solid rgba(193, 127, 95, 0.2);
}

/* --- YOUTUBE CHANNEL BANNER CARD --- */
.youtube-channel-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border-radius: var(--radius-lg);
    padding: 2.2rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.youtube-channel-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.yt-card-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.yt-icon-badge {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.yt-card-text h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 0.35rem;
}

.yt-card-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    max-width: 580px;
    line-height: 1.5;
}

.btn-youtube-subscribe {
    background: #FF0000;
    color: #FFFFFF;
    font-weight: 600;
    padding: 0.9rem 1.6rem;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.35);
    flex-shrink: 0;
}

.btn-youtube-subscribe:hover {
    background: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
    color: #FFFFFF;
}

@media (max-width: 840px) {
    .youtube-channel-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    .yt-card-content {
        flex-direction: column;
        text-align: center;
    }
    .btn-youtube-subscribe {
        width: 100%;
        justify-content: center;
    }
}

/* --- NEW SECTION 1: JORNADA DO PACIENTE --- */
/* --- JORNADA DO PACIENTE - TIMELINE HORIZONTAL PROFISSIONAL --- */
.journey-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 4rem;
    position: relative;
}

/* Linha conectora horizontal */
.journey-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 2px;
    background: linear-gradient(90deg, 
        var(--color-terracotta),
        rgba(197, 160, 89, 0.5),
        var(--color-terracotta),
        rgba(197, 160, 89, 0.5),
        var(--color-terracotta)
    );
    z-index: 0;
}

.journey-step {
    background: transparent;
    padding: 0 1.5rem;
    position: relative;
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.journey-step:hover {
    transform: translateY(-4px);
}

.step-badge {
    width: 64px;
    height: 64px;
    background: var(--color-bg-main);
    color: var(--color-terracotta);
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    border: 3px solid var(--color-terracotta);
    box-shadow: 0 0 0 8px var(--color-bg-main), 0 8px 24px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.journey-step:hover .step-badge {
    background: var(--color-terracotta);
    color: #FFFFFF;
    box-shadow: 0 0 0 8px var(--color-bg-main), 0 12px 32px var(--color-terracotta-glow);
}

.step-content {
    background: #FFFFFF;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(22, 42, 59, 0.05);
    transition: var(--transition);
    width: 100%;
}

.journey-step:hover .step-content {
    box-shadow: var(--shadow-hover);
    border-color: rgba(197, 160, 89, 0.15);
}

.step-content h3 {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.step-content p {
    font-size: 0.88rem;
    color: var(--color-text-body);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .journey-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-left: 3rem;
    }
    .journey-steps::before {
        top: 0;
        bottom: 0;
        left: 28px;
        right: auto;
        width: 2px;
        height: auto;
    }
    .journey-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 0;
    }
    .step-badge {
        margin-bottom: 0;
        flex-shrink: 0;
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }
}

/* --- NEW SECTION 2: DEPOIMENTOS / PROVA SOCIAL (GOOGLE REVIEWS) --- */
.testimonials {
    background: var(--color-bg-surface);
}

.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #FFFFFF;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border: 1px solid rgba(22, 42, 59, 0.08);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.google-rating-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: rgba(193, 127, 95, 0.35);
}

.google-rating-badge .score {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-navy);
}

.stars-gold {
    color: #FBBC04;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.google-rating-badge .count {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

/* --- TESTIMONIALS CAROUSEL STYLES --- */
.testimonials-carousel-wrapper {
    position: relative;
    margin-top: 3.5rem;
    padding: 0 4rem;
}

@media (max-width: 768px) {
    .testimonials-carousel-wrapper {
        padding: 0 3rem;
    }
}

@media (max-width: 480px) {
    .testimonials-carousel-wrapper {
        padding: 0 2rem;
    }
    .testimonials-carousel-wrapper .carousel-btn {
        width: 40px;
        height: 40px;
    }
    .testimonials-carousel-wrapper .carousel-btn.prev {
        left: -10px;
    }
    .testimonials-carousel-wrapper .carousel-btn.next {
        right: -10px;
    }
}

.testimonials-slider {
    display: flex;
    gap: 1.8rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 1rem 0.5rem 2rem 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.2rem);
    min-width: 320px;
    scroll-snap-align: center;
    background: #FFFFFF;
    padding: 2.2rem 2rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(22, 42, 59, 0.05), 0 2px 6px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(197, 160, 89, 0.22);
    position: relative;
    overflow: hidden;
}

.testimonial-card::after {
    content: '“';
    position: absolute;
    bottom: -15px;
    right: 15px;
    font-family: var(--font-serif);
    font-size: 7.5rem;
    line-height: 1;
    color: rgba(197, 160, 89, 0.07);
    pointer-events: none;
    font-weight: 700;
}

@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 0.9rem);
    }
}

@media (max-width: 640px) {
    .testimonial-card {
        flex: 0 0 88%;
        min-width: 0;
        max-width: 360px;
        padding: 1.8rem 1.4rem 1.6rem;
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #FFFFFF;
    color: var(--color-navy);
    border: 1px solid rgba(22, 42, 59, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn.prev-btn {
    left: 0;
}

.carousel-btn.next-btn {
    right: 0;
}

.carousel-btn:hover {
    background: var(--color-navy);
    color: #FFFFFF;
    border-color: var(--color-navy);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 28px rgba(22, 42, 59, 0.3);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.google-card {
    border-top: 1px solid rgba(197, 160, 89, 0.22);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(197, 160, 89, 0.5);
    box-shadow: 0 20px 45px rgba(22, 42, 59, 0.09), 0 0 20px rgba(197, 160, 89, 0.15);
}

.google-card-header {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    margin-bottom: 1.15rem;
    position: relative;
    padding-right: 36px;
}

.author-avatar-google {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #FFFFFF !important;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid #FFFFFF;
    background: linear-gradient(135deg, #162A3B 0%, #2A4865 100%) !important;
}

/* Paleta harmoniosa e elegante nos avatares */
.testimonial-card:nth-child(3n+1) .author-avatar-google {
    background: linear-gradient(135deg, #162A3B 0%, #274765 100%) !important;
}
.testimonial-card:nth-child(3n+2) .author-avatar-google {
    background: linear-gradient(135deg, #B87333 0%, #C17F5F 100%) !important;
}
.testimonial-card:nth-child(3n+3) .author-avatar-google {
    background: linear-gradient(135deg, #34495E 0%, #4A6572 100%) !important;
}

.author-info {
    flex-grow: 1;
    min-width: 0;
}

.author-info strong {
    display: block;
    font-family: var(--font-sans);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--color-navy);
    line-height: 1.25;
}

.review-date {
    display: block;
    font-size: 0.76rem;
    color: var(--color-text-muted);
    margin-top: 0.2rem;
}

.google-g-icon {
    position: absolute;
    top: 2px;
    right: 0;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.06));
}

.testimonial-card .stars-gold {
    color: #F59E0B;
    font-size: 1.15rem;
    letter-spacing: 2px;
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.testimonial-card .stars-gold::after {
    content: '5.0 • Google';
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: normal;
    color: #059669;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.22);
    padding: 0.15rem 0.55rem;
    border-radius: 20px;
}

.testimonial-quote {
    font-size: 0.96rem;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
    position: relative;
    font-style: italic;
}

.testimonial-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.4rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(22, 42, 59, 0.07);
    font-size: 0.74rem;
    color: var(--color-text-muted);
}

.testimonial-card-footer .verified-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 500;
    color: #059669;
}

.testimonial-card-footer .source-tag {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    letter-spacing: 0.02em;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(22, 42, 59, 0.06);
    padding-top: 1.25rem;
}

.author-avatar {
    width: 42px;
    height: 42px;
    background: var(--color-sage-light);
    color: var(--color-sage);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-navy);
}

.testimonial-author small {
    display: block;
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

/* --- NEW SECTION 3: FAQ ACCORDION --- */
.faq-accordion {
    max-width: 860px;
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    border: 1px solid rgba(197, 160, 89, 0.15); /* Borda levemente dourada */
    overflow: hidden;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow: 0 12px 30px rgba(197, 160, 89, 0.08);
    transform: translateY(-3px);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-navy);
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--color-terracotta);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
    color: var(--color-text-body);
    font-size: 1.05rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding: 0 2rem 1.75rem;
}

/* --- NEW SECTION 4: LOCALIZAÇÃO & MODALIDADES --- */
.location-box {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    overflow: hidden;
    border: 1px solid rgba(22, 42, 59, 0.06);
}

.location-col {
    padding: 4rem;
}

.location-col h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.location-col p {
    font-size: 1rem;
    color: var(--color-text-body);
    margin-bottom: 2.5rem;
}

.modalities-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.modality-item {
    display: flex;
    gap: 1.25rem;
}

.mod-icon {
    font-size: 1.75rem;
    background: var(--color-bg-surface);
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modality-item strong {
    display: block;
    font-size: 1.05rem;
    color: var(--color-navy);
    margin-bottom: 0.25rem;
}

.modality-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.location-badge-col {
    background: var(--color-bg-surface);
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clinic-badge-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
    width: 100%;
}

.clinic-badge-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.clinic-badge-card ul li {
    font-size: 0.92rem;
    margin-bottom: 0.8rem;
    color: var(--color-text-body);
}

/* --- 6. SEÇÃO AGENDAMENTO & CONTATO --- */
.contact-card-frame {
    background: var(--color-navy);
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(22, 42, 59, 0.25);
    color: #FFFFFF;
}

.contact-info-col {
    padding: 4.5rem;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-col h2 {
    color: #FFFFFF;
    font-size: 2.4rem;
    margin-bottom: 1.25rem;
}

.contact-info-col h2 em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}

.contact-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.whatsapp-direct-box {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wa-icon-large {
    width: 48px;
    height: 48px;
    background: #25D366;
    color: #FFFFFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.whatsapp-direct-box h4 {
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.whatsapp-direct-box p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.contact-form-col {
    padding: 4.5rem;
    background: #FFFFFF;
    color: var(--color-text-body);
}

.luxury-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--color-navy);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-navy);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.95rem 1.1rem;
    background: var(--color-bg-main);
    border: 1px solid rgba(22, 42, 59, 0.12);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text-main);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-terracotta);
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(193, 127, 95, 0.12);
}

.form-privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
    text-align: center;
    line-height: 1.4;
}

.form-privacy-note svg {
    color: var(--color-terracotta);
    flex-shrink: 0;
}

/* --- 7. RODAPÉ (FOOTER) --- */
.footer {
    background: var(--color-navy);
    color: rgba(255, 255, 255, 0.82);
    padding-top: 5rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.footer-logo .logo-mark {
    width: 54px;
    height: 54px;
}

.footer-tagline {
    font-size: 0.88rem;
    color: var(--color-terracotta);
    margin-bottom: 1rem;
}

.footer-audience {
    font-size: 0.9rem;
    max-width: 340px;
    line-height: 1.6;
}

.footer-col h4 {
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.links-col ul li {
    margin-bottom: 0.75rem;
}

.links-col a {
    color: rgba(255, 255, 255, 0.78);
    transition: var(--transition);
}

.links-col a:hover {
    color: var(--color-terracotta);
    padding-left: 4px;
}

.social-info {
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.4rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-pill);
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.instagram-btn:hover {
    background: #E1306C;
    border-color: #E1306C;
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.3);
}

.facebook-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.4rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-pill);
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition);
}

.facebook-btn:hover {
    background: #1877F2;
    border-color: #1877F2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.75rem 0;
    font-size: 0.85rem;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition);
}

.kuboweb-link {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease, text-decoration 0.25s ease;
}

.kuboweb-link:hover {
    color: var(--color-terracotta);
    text-decoration: underline;
}

.footer-legal a:hover {
    color: var(--color-terracotta);
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
}

.wa-tooltip {
    position: absolute;
    right: 70px;
    background: var(--color-navy);
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.floating-whatsapp:hover .wa-tooltip {
    opacity: 1;
    right: 75px;
}

/* --- Scroll Animations --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.fade-in.is-visible {
    opacity: 1;
}

/* --- Responsive Adaptations --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 2.75rem;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .badge-1 { left: -10px; top: 20px; }
    .badge-2 { right: -10px; bottom: 20px; }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .location-box {
        grid-template-columns: 1fr;
    }
    
    .contact-card-frame {
        grid-template-columns: 1fr;
    }
    
    .contact-info-col,
    .contact-form-col,
    .location-col,
    .location-badge-col {
        padding: 3rem 2rem;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header-inner {
        position: relative;
    }
    
    .brand {
        position: relative;
        z-index: 1002;
    }

    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: #FAF8F5;
        padding: 6rem 2rem 3rem;
        box-shadow: none;
        border-bottom: none;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav.active {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 1.6rem;
        width: 100%;
    }

    .nav-list a {
        font-size: 1.25rem;
        font-weight: 500;
        color: var(--color-navy);
        padding: 0.4rem 1.2rem;
        text-align: center;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        position: relative;
        z-index: 1002;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* --- REVIEW MODAL OVERLAY --- */
.review-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(22, 42, 59, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 9999;
    padding: 1.5rem;
}

.review-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.review-modal-content {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 500px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s ease;
    border-top: 4px solid var(--color-terracotta);
}

.review-modal.active .review-modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text-muted);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--color-navy);
    transform: scale(1.1);
}

.modal-header {
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.modal-header p {
    font-size: 0.9rem;
    color: var(--color-text-body);
}

/* Star Rating Input */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.star-rating-input input[type="radio"] {
    display: none;
}

.star-rating-input label {
    font-size: 2.2rem;
    color: #E2E8F0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.star-rating-input input[type="radio"]:checked ~ label,
.star-rating-input label:hover,
.star-rating-input label:hover ~ label {
    color: #FBBC04;
}

.btn-block {
    width: 100%;
    margin-top: 1.5rem;
}

.carousel-action {
    margin-top: 3rem;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Desativa animações de reveal que travam os carrosséis/sliders */
.credentials-slider .credential-card:not(:hover),
.testimonials-slider .testimonial-card:not(:hover) {
    transform: none !important;
}
.credentials-slider .credential-card,
.testimonials-slider .testimonial-card {
    opacity: 1 !important;
}

/* ==========================================================================
   LINHA DOURADA ANIMADA (UNDERLINE REVEAL)
   ========================================================================== */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 60px;
    height: 2px;
    background: var(--color-terracotta);
    transform: translateX(-50%) scaleX(0);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-title.active::after,
.reveal.active .section-title::after,
.section-header.active .section-title::after {
    transform: translateX(-50%) scaleX(1);
}

/* ==========================================================================
   SEÇÃO MARQUEE / TICKER (FAIXA ROLANTE DE ESPECIALIDADES)
   ========================================================================== */
.marquee-section {
    overflow: hidden;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(197, 160, 89, 0.18);
    border-bottom: 1px solid rgba(197, 160, 89, 0.18);
    background: linear-gradient(90deg, var(--color-bg-surface) 0%, rgba(255, 255, 255, 0.95) 50%, var(--color-bg-surface) 100%);
    position: relative;
}

.marquee-section:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-track {
    display: flex;
    gap: 3.5rem;
    animation: marquee-scroll 45s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--color-navy);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 3.5rem;
    opacity: 0.85;
}

.marquee-track span::after {
    content: '✦';
    color: var(--color-terracotta);
    font-size: 0.75rem;
    opacity: 0.7;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   SPECIALTY CARDS - BORDA DOURADA ANIMADA
   ========================================================================== */
.specialty-card {
    position: relative;
    overflow: hidden;
}

.specialty-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-terracotta), rgba(197, 160, 89, 0.3));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.specialty-card:hover::after {
    transform: scaleX(1);
}

.specialty-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   FAQ ACCORDION - ANIMAÇÃO PREMIUM
   ========================================================================== */
.faq-item {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 3px solid transparent;
}

.faq-item.active {
    border-left-color: var(--color-terracotta);
    background: rgba(197, 160, 89, 0.03);
}

.faq-question:hover {
    color: var(--color-terracotta);
}

/* ==========================================================================
   JOURNEY STEPS - CORREÇÃO DE LAYOUT HORIZONTAL
   ========================================================================== */
/* A linha conectora vertical foi removida pois o grid é horizontal na versão desktop */

/* ==========================================================================
   BOTÕES - EFEITO SHIMMER (BRILHO PASSANDO)
   ========================================================================== */
.btn-terracotta {
    position: relative;
    overflow: hidden;
}

.btn-terracotta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: none;
    animation: none;
}

.btn-terracotta:hover::after {
    animation: btn-shimmer 0.6s ease forwards;
}

@keyframes btn-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ==========================================================================
   LOGO PULSE (HEARTBEAT SUTIL)
   ========================================================================== */
.logo-mark {
    animation: logo-pulse 3s ease-in-out infinite;
}

@keyframes logo-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

/* ==========================================================================
   PILLS HOVER ANIMADO
   ========================================================================== */
.pill {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pill:hover {
    background: var(--color-terracotta);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--color-terracotta-glow);
}

/* ==========================================================================
   BLOCKQUOTE ANIMAÇÃO
   ========================================================================== */
.luxury-quote {
    position: relative;
    border-left: 3px solid var(--color-terracotta);
    transition: all 0.4s ease;
}

.luxury-quote:hover {
    border-left-width: 5px;
    padding-left: 2rem;
}

/* ==========================================================================
   SMOOTH PAGE LOAD (BODY FADE IN)
   ========================================================================== */
body {
    animation: page-fade-in 0.8s ease-out;
}

@keyframes page-fade-in {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   FLOATING WHATSAPP - PULSE RING
   ========================================================================== */
.floating-whatsapp::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: wa-pulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes wa-pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.4); opacity: 0; }
}

/* ==========================================================================
   HEADER LINK - UNDERLINE REVEAL ANIMATION
   ========================================================================== */
.nav-list a {
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-terracotta);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-list a:hover::after {
    width: 100%;
}

/* ==========================================================================
   CREDENCIAIS SECTION - PREMIUM REDESIGN
   ========================================================================== */
.credentials-section {
    background: var(--color-navy);
    color: #FFFFFF;
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.credentials-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 50%, rgba(197, 160, 89, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 85% 30%, rgba(197, 160, 89, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(197, 160, 89, 0.03) 0%, transparent 35%);
    pointer-events: none;
}

/* Header */
.credentials-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}

.credentials-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-terracotta), transparent);
    margin: 0 auto 2rem;
}

.credentials-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.credentials-title em {
    color: var(--color-terracotta);
    font-style: italic;
}

.credentials-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

/* Grid de Cards — Layout 4+3 Premium */
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4.5rem;
}

/* Os últimos 3 cards (5, 6, 7) ficam centralizados na segunda linha */
.credentials-grid .credential-card:nth-child(5),
.credentials-grid .credential-card:nth-child(6),
.credentials-grid .credential-card:nth-child(7) {
    grid-column: auto;
}

/* Segunda linha com 3 cards: cria subgrid de 3 colunas centralizado */
.credentials-grid::after {
    content: none;
}

/* Hack elegante: os últimos 3 cards numa linha de 6 colunas para centralizar */
@supports (display: grid) {
    .credentials-grid {
        grid-template-columns: repeat(12, 1fr);
    }
    .credentials-grid .credential-card {
        grid-column: span 3;
    }
    .credentials-grid .credential-card:nth-child(5) {
        grid-column: 2 / span 3;
    }
    .credentials-grid .credential-card:nth-child(6) {
        grid-column: 5 / span 3;
    }
    .credentials-grid .credential-card:nth-child(7) {
        grid-column: 8 / span 3;
    }
}

@media (max-width: 1100px) {
    .credentials-grid,
    .credentials-grid.credentials-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .credentials-grid .credential-card,
    .credentials-grid .credential-card:nth-child(5),
    .credentials-grid .credential-card:nth-child(6),
    .credentials-grid .credential-card:nth-child(7) {
        grid-column: span 1 !important;
    }
}

@media (max-width: 640px) {
    .credentials-grid,
    .credentials-grid.credentials-grid {
        grid-template-columns: 1fr !important;
    }
    .credentials-title {
        font-size: 2rem;
    }
}

/* Card Individual */
.credential-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.credential-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 1.4rem;
    color: var(--color-terracotta);
    opacity: 0.3;
    transition: all 0.4s ease;
}

.credential-card:hover .credential-arrow {
    opacity: 1;
    transform: translateX(6px);
}

.credential-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-terracotta), rgba(197, 160, 89, 0.2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.credential-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(197, 160, 89, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.credential-card:hover::before {
    transform: scaleX(1);
}

/* Número Grande */
.credential-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(197, 160, 89, 0.12);
    line-height: 1;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.credential-card:hover .credential-number {
    color: rgba(197, 160, 89, 0.3);
}

/* Ícone */
.credential-icon {
    width: 52px;
    height: 52px;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-terracotta);
    transition: var(--transition);
}

.credential-card:hover .credential-icon {
    background: var(--color-terracotta);
    color: #FFFFFF;
    border-color: var(--color-terracotta);
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.25);
}

/* Nome e Descrição */
.credential-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.credential-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

/* Badge do Pilar */
.credential-badge {
    display: inline-block;
    align-self: flex-start;
    margin-top: auto;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.credential-card:hover .credential-badge {
    background: rgba(197, 160, 89, 0.2);
    border-color: rgba(197, 160, 89, 0.4);
}

/* Citação de Autoridade */
.credentials-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

/* Container do Slider de Credenciais */
.credentials-slider-container {
    position: relative;
    max-width: 100%;
    padding: 0 4rem;
}

.credentials-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding: 1.5rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.credentials-slider::-webkit-scrollbar {
    display: none;
}

.credentials-slider .credential-card {
    flex: 0 0 340px !important;
    min-width: 340px !important;
    max-width: 340px !important;
    width: 340px !important;
    box-sizing: border-box;
    scroll-snap-align: center;
}

.credentials-slider-container .cred-prev {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.credentials-slider-container .cred-next {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

@media (max-width: 768px) {
    .credentials-slider-container {
        padding: 0 3rem;
    }
    .credentials-slider .credential-card {
        flex: 0 0 300px !important;
        min-width: 300px !important;
        max-width: 300px !important;
        width: 300px !important;
    }
}

@media (max-width: 480px) {
    .credentials-slider-container {
        padding: 0 1.5rem;
    }
    .credentials-slider .credential-card {
        flex: 0 0 280px !important;
        min-width: 280px !important;
        max-width: 280px !important;
        width: 280px !important;
    }
    .credentials-slider-container .cred-nav-btn {
        width: 40px;
        height: 40px;
    }
    .credentials-slider-container .cred-nav-btn svg {
        width: 16px;
        height: 16px;
    }
}

.mobile-only-btn {
    display: none !important;
}
@media (max-width: 768px) {
    .mobile-only-btn {
        display: flex !important;
    }
}

/* Botões do Carrossel de Credenciais — Premium */
.cred-nav-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.06);
    border: 1.5px solid rgba(197, 160, 89, 0.2);
    color: var(--color-terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cred-nav-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cred-nav-btn:hover {
    background: var(--color-terracotta);
    color: #FFFFFF;
    border-color: var(--color-terracotta);
    transform: scale(1.08);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.12), 0 8px 24px rgba(197, 160, 89, 0.2);
}

.cred-nav-btn:hover svg {
    transform: scale(1.15);
}

.cred-nav-btn:active {
    transform: scale(0.95);
}

/* Linha decorativa entre os botões */
.cred-nav-controls {
    position: relative;
}

.cred-nav-controls::before {
    content: '';
    width: 40px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.3), transparent);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.credentials-quote-line {
    width: 40px;
    height: 1px;
    background: var(--color-terracotta);
    margin: 0 auto 2rem;
}

.credentials-quote blockquote {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.credentials-quote-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.cqa-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-terracotta);
    font-style: italic;
}

.cqa-role {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   SEÇÃO SEPARADORA ELEGANTE (DOURADA)
   ========================================================================== */
.methodology::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-terracotta), transparent);
}

/* ==========================================================================
   EFEITO GLASSMORPHISM MAIS PREMIUM NO HEADER SCROLLED
   ========================================================================== */
.header.scrolled {
    background: rgba(252, 252, 252, 0.92);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 8px 40px rgba(0, 0, 0, 0.04);
}

/* ==========================================================================
   HERO IMAGE - GOLDEN FRAME ACCENT
   ========================================================================== */
.hero-card-frame {
    position: relative;
}

.hero-card-frame::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--color-terracotta) 0%, rgba(197,160,89,0.2) 50%, var(--color-terracotta) 100%);
    border-radius: calc(var(--radius-lg) + 4px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-card-frame:hover::before {
    opacity: 1;
}

/* ==========================================================================
   FORM INPUT FOCUS - LABEL ANIMATION
   ========================================================================== */
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-terracotta);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

/* ==========================================================================
   SECTION TAG HOVER
   ========================================================================== */
.section-tag {
    transition: var(--transition);
}

.section-tag:hover {
    background: var(--color-terracotta);
    color: #FFFFFF;
}

/* ==========================================================================
   UTILITY - MARGIN/SPACING HELPERS
   ========================================================================== */
.mt-sm { margin-top: 0.75rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 3rem; }
.mt-l { margin-top: 2rem; }
.mb-sm { margin-bottom: 0.75rem; }

/* ==========================================================================
   PAGE HERO BANNERS (SOBRE / AVALIAÇÕES)
   ========================================================================== */
.page-hero {
    background: var(--color-navy);
    padding: 5.5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(197, 160, 89, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(197, 160, 89, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-terracotta), transparent);
}

/* ==========================================================================
   LOCATION PREMIUM REDESIGN
   ========================================================================== */
.location-premium {
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.location-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.05), transparent);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.location-info {
    padding-right: 2rem;
}

.location-title {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    color: var(--color-navy);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.location-title em {
    color: var(--color-terracotta);
    font-style: italic;
}

.location-desc {
    font-size: 1.05rem;
    color: var(--color-text-body);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.location-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.loc-card {
    background: var(--color-bg-main);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    display: flex;
    gap: 1.25rem;
    transition: var(--transition);
}

.loc-card:hover {
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(197, 160, 89, 0.2);
    transform: translateY(-3px);
}

.loc-icon {
    width: 48px;
    height: 48px;
    background: rgba(197, 160, 89, 0.1);
    color: var(--color-terracotta);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.loc-content h3 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.loc-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

.loc-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.85rem;
}

.loc-links a {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-terracotta);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.loc-links a:hover {
    color: var(--color-terracotta-hover);
}

.location-visual {
    position: relative;
}

.map-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: contrast(1.05) grayscale(0.2); /* Deixa o mapa levemente mais premium/sóbrio */
}

.map-overlay-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-left: 3px solid var(--color-terracotta);
    font-size: 0.85rem;
    color: var(--color-text-body);
    line-height: 1.6;
}

.map-overlay-badge strong {
    color: var(--color-navy);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 4.5rem 0 3rem;
    }
    .page-hero-title {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   ABOUT SECTION IMAGE - GOLDEN ACCENT
   ========================================================================== */
.about-image-frame {
    position: relative;
}

.about-image-frame::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(197, 160, 89, 0.2);
    border-radius: var(--radius-lg);
    z-index: -1;
    transition: all 0.5s ease;
}

.about-image-frame:hover::after {
    top: 10px;
    left: 10px;
    border-color: rgba(197, 160, 89, 0.4);
}

/* ==========================================================================
   VIDEO CARDS - ENHANCED PREMIUM
   ========================================================================== */
.video-card {
    position: relative;
}

.video-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF0000, rgba(255, 0, 0, 0.3));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card:hover::after {
    transform: scaleX(1);
}

/* ==========================================================================
/* ==========================================================================
   TESTIMONIAL CARDS - LUXURY HOVER ACCENT
   ========================================================================== */
.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-terracotta), rgba(197, 160, 89, 0.8), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

/* ==========================================================================
   CONTACT SECTION - GOLDEN ACCENTS
   ========================================================================== */
.contact-info-col h2 {
    position: relative;
}

.luxury-form input:hover,
.luxury-form textarea:hover {
    border-color: rgba(197, 160, 89, 0.3);
}

/* ==========================================================================
   FOOTER - PREMIUM HOVER EFFECTS
   ========================================================================== */
.links-col a {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.links-col a:hover {
    color: var(--color-terracotta);
    padding-left: 8px;
}

.footer-logo .logo-mark {
    animation: none;
}

/* ==========================================================================
   PREMIUM MOBILE OVERHAUL
   ========================================================================== */
@media (max-width: 768px) {
    /* 1. Global Spacing & Typography */
    .section-padding { padding: 4.5rem 0; }
    .hero-text h1 { font-size: 2.2rem !important; line-height: 1.2; }
    .section-title { font-size: 2rem; line-height: 1.2; }
    
    .hero-stats {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-around !important;
        align-items: center !important;
        text-align: center;
        gap: 0.35rem !important;
        padding-top: 1.25rem !important;
        border-top: 1px solid rgba(22, 42, 59, 0.08) !important;
        width: 100% !important;
    }
    .hero-stats .stat-item {
        align-items: center;
        flex: 1;
    }
    .hero-stats .stat-number {
        font-size: 1.35rem !important;
    }
    .hero-stats .stat-label {
        font-size: 0.7rem !important;
        line-height: 1.2;
    }
    .hero-stats .stat-divider {
        display: block !important;
        height: 26px !important;
        width: 1px !important;
        background: rgba(22, 42, 59, 0.12) !important;
        margin: 0 !important;
    }
    .hero-image-box { height: 420px; }
    .floating-card { padding: 0.6rem 1rem; }
    .badge-1 { top: 20px; left: -10px; }
    .badge-2 { bottom: 20px; right: -10px; }

    /* 3. Methodology, Specialties, Videos, Credentials & Testimonials - Swipeable Sliders */
    .cred-nav-btn, .carousel-btn {
        width: 32px !important;
        height: 32px !important;
    }
    .cred-nav-btn svg, .carousel-btn svg {
        width: 16px !important;
        height: 16px !important;
    }
    
    .methodology-slider-wrapper,
    .credentials-slider-container,
    .testimonials-carousel-wrapper,
    .specialties-grid,
    .videos-grid {
        margin-left: -1.75rem !important;
        margin-right: -1.75rem !important;
        width: auto !important;
        padding: 0 !important;
    }
    
    .methodology-grid, 
    .credentials-slider, 
    .specialties-grid,
    .videos-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 1.25rem !important;
        padding-bottom: 2rem !important;
        scrollbar-width: none !important;
        padding-left: 14vw !important;
        padding-right: 14vw !important;
    }

    .testimonials-slider {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 1rem !important;
        padding-bottom: 2rem !important;
        scrollbar-width: none !important;
        padding-left: 6vw !important;
        padding-right: 6vw !important;
    }
    
    .methodology-grid::-webkit-scrollbar, 
    .specialties-grid::-webkit-scrollbar, 
    .videos-grid::-webkit-scrollbar, 
    .credentials-slider::-webkit-scrollbar, 
    .testimonials-slider::-webkit-scrollbar { 
        display: none !important; 
    }
    
    .method-card, .specialty-card, .video-card, .credential-card {
        flex: 0 0 78% !important;
        min-width: 0 !important;
        scroll-snap-align: center !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    .testimonial-card {
        flex: 0 0 88% !important;
        min-width: 0 !important;
        max-width: 355px !important;
        padding: 1.85rem 1.45rem 1.65rem !important;
        border-radius: 18px !important;
        scroll-snap-align: center !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    /* Garantir 100% de visibilidade, nitidez imediata e sem tela branca no mobile */
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale,
    .section-header,
    .section-title,
    .contact-info-col,
    .contact-form-col,
    .journey-step,
    .faq-accordion,
    .faq-item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    /* Ocultar botões sobrepostos de slider no mobile (usuário usa gesto natural de arrastar) */
    .methodology-slider-wrapper .cred-nav-btn,
    .credentials-slider-container .cred-nav-btn,
    .testimonials-carousel-wrapper .carousel-btn {
        display: none !important;
    }

    /* Botão flutuante do WhatsApp otimizado para mobile */
    .floating-whatsapp {
        bottom: 18px !important;
        right: 18px !important;
        width: 50px !important;
        height: 50px !important;
        z-index: 990 !important;
    }
    .floating-whatsapp svg {
        width: 26px !important;
        height: 26px !important;
    }
    .wa-tooltip {
        display: none !important;
    }
    body.no-scroll .floating-whatsapp {
        opacity: 0 !important;
        pointer-events: none !important;
        transform: scale(0.7) !important;
    }

    /* Treatments Responsive */
    .treatments-container {
        margin-top: 3.5rem;
        padding-top: 3rem;
    }
    .treatments-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
    .treatment-card {
        padding: 1.5rem 1.25rem;
    }

    /* 4. Contact & Location */
    .contact-card-frame, .location-box {
        display: flex;
        flex-direction: column;
    }
    .contact-info-col, .contact-form-col, .location-col {
        padding: 2.5rem 1.5rem;
    }
    .location-grid {
        gap: 2.5rem;
    }

    /* 5. Footer Centralizado */
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .footer-logo { justify-content: center; }
    .footer-audience { margin: 0 auto; }
    .social-info { margin-top: 1rem; }
    .instagram-btn, .facebook-btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   VIDEO LIGHTBOX MODAL
   ========================================================================== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 1.5rem;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 20, 30, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.video-modal-container {
    position: relative;
    width: 100%;
    max-width: 860px;
    background: #000000;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(197, 160, 89, 0.3);
    z-index: 2;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.active .video-modal-container {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.video-modal-close:hover {
    color: var(--color-terracotta);
    transform: scale(1.15);
}

.video-modal-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-modal-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Accessibility: Focus-Visible */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-terracotta);
    outline-offset: 3px;
}

/* ==========================================================================
   LUXURY CTA BANNER
   ========================================================================== */
.luxury-cta-banner {
    background: linear-gradient(135deg, var(--color-navy) 0%, #111a24 50%, var(--color-navy) 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.luxury-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(197, 160, 89, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.luxury-cta-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: #FFFFFF;
    font-weight: 500;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.luxury-cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .luxury-cta-banner {
        padding: 4.5rem 0;
    }
    .luxury-cta-title {
        font-size: 2rem;
    }
}

/* ==========================================================================
   COOKIE / LGPD CONSENT BANNER (KUBOWEB ANALYTICS)
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 25px;
    left: 25px;
    max-width: 440px;
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    padding: 1.5rem 1.6rem;
    z-index: 99999;
    color: #FFFFFF;
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

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

.cookie-banner-header {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.6rem;
}

.cookie-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(193, 127, 95, 0.15);
    color: var(--color-terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-banner-header h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

.cookie-banner-text {
    font-size: 0.85rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.1rem;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-cookie-accept {
    background: var(--color-terracotta);
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px var(--color-terracotta-glow);
}

.btn-cookie-accept:hover {
    background: #b06f52;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(193, 127, 95, 0.5);
}

.btn-cookie-decline {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.55rem 1rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-decline:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #FFFFFF;
}

.cookie-privacy-link {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: underline;
    transition: var(--transition);
    margin-left: auto;
}

.cookie-privacy-link:hover {
    color: var(--color-terracotta);
}

.cookie-prefs-link {
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    cursor: pointer;
    text-decoration: underline;
    transition: var(--transition);
}

.cookie-prefs-link:hover {
    color: var(--color-terracotta);
}

@media (max-width: 600px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
        padding: 1.2rem;
    }
    .cookie-banner-actions {
        width: 100%;
    }
    .btn-cookie-accept {
        flex: 1;
        text-align: center;
    }
    .btn-cookie-decline {
        flex: 1;
        text-align: center;
    }
    .cookie-privacy-link {
        width: 100%;
        text-align: center;
        margin-top: 0.25rem;
    }
}

/* ==========================================================================
   CUSTOM LUXURY INSTAGRAM REELS & FEED CARDS
   ========================================================================== */
.instagram-feed-section {
    background: var(--color-bg-surface);
    border-top: 1px solid rgba(22, 42, 59, 0.05);
    border-bottom: 1px solid rgba(22, 42, 59, 0.05);
    position: relative;
    overflow: hidden;
}

.instagram-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 1.2rem;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.08) 0%, rgba(197, 160, 89, 0.12) 100%);
    border: 1px solid rgba(225, 48, 108, 0.22);
    color: #D62976;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.instagram-badge-pill svg {
    color: #D62976;
}

.instagram-custom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.insta-luxury-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(22, 42, 59, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: insta-card-fade-in 0.65s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

@keyframes insta-card-fade-in {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.insta-luxury-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #E1306C, var(--color-terracotta));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.insta-luxury-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(22, 42, 59, 0.1);
    border-color: rgba(197, 160, 89, 0.4);
}

.insta-luxury-card:hover::after {
    transform: scaleX(1);
}

.insta-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #1A1A1A;
}

.insta-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.insta-luxury-card:hover .insta-card-img {
    transform: scale(1.06);
}

.insta-type-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-pill);
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    z-index: 2;
}

.insta-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 3;
}

.insta-luxury-card:hover .insta-card-overlay {
    opacity: 1;
}

.insta-play-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #E1306C;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transform: scale(0.85);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.insta-luxury-card:hover .insta-play-btn {
    transform: scale(1);
}

.insta-card-body {
    padding: 1.6rem 1.6rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.insta-card-category {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-terracotta);
    margin-bottom: 0.5rem;
}

.insta-card-title {
    font-family: var(--font-serif);
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--color-navy);
    line-height: 1.35;
    margin-bottom: 0.65rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.insta-card-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.55;
    margin-bottom: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.insta-card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(22, 42, 59, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.insta-profile-tag {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-navy);
}

.insta-profile-tag svg {
    color: #E1306C;
}

.insta-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-terracotta);
    transition: transform 0.25s ease;
}

.insta-luxury-card:hover .insta-cta-link {
    transform: translateX(4px);
    color: #E1306C;
}

/* Skeleton Loading Shimmer */
.insta-skeleton-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(22, 42, 59, 0.06);
    overflow: hidden;
    height: 420px;
    display: flex;
    flex-direction: column;
}

.insta-skeleton-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(90deg, #F0EDE8 0%, #FAF8F5 50%, #F0EDE8 100%);
    background-size: 200% 100%;
    animation: insta-shimmer 1.5s infinite;
}

.insta-skeleton-body {
    padding: 1.6rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.insta-skeleton-line {
    height: 14px;
    border-radius: 6px;
    background: linear-gradient(90deg, #F0EDE8 0%, #FAF8F5 50%, #F0EDE8 100%);
    background-size: 200% 100%;
    animation: insta-shimmer 1.5s infinite;
}

.insta-skeleton-line.short { width: 35%; }
.insta-skeleton-line.title { height: 22px; width: 85%; }
.insta-skeleton-line.desc-1 { width: 95%; }
.insta-skeleton-line.desc-2 { width: 75%; }

@keyframes insta-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.instagram-follow-cta {
    margin-top: 3rem;
}

.btn-instagram-follow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%);
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-instagram-follow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.35);
    color: #FFFFFF !important;
}

@media (max-width: 992px) {
    .instagram-custom-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .instagram-custom-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .insta-card-media {
        aspect-ratio: 16 / 10;
    }
}

/* ==========================================================================
   SPOTLIGHT CARDS ENGINE (ELLEN FOLLY CLINICAL LUXURY)
   ========================================================================== */
.spotlight-card,
.specialty-card,
.treatment-card,
.method-card {
    position: relative;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-border-subtle) !important;
    border-radius: 1.5rem !important;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.3s ease;
    overflow: hidden;
}

.spotlight-card::before,
.specialty-card::before,
.treatment-card::before,
.method-card::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, -200px);
    left: var(--mouse-x, -200px);
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(142, 101, 71, 0.14), transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.spotlight-card:hover::before,
.specialty-card:hover::before,
.treatment-card:hover::before,
.method-card:hover::before {
    opacity: 1;
}

.spotlight-card:hover,
.specialty-card:hover,
.treatment-card:hover,
.method-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-focus) !important;
    box-shadow: 0 24px 48px -12px rgba(21, 22, 25, 0.08) !important;
}

.specialty-card > *,
.treatment-card > *,
.method-card > * {
    position: relative;
    z-index: 2;
}

/* Button & Badge Refinements (Ellen Folly Luxury Palette) */
.btn-terracotta {
    background: var(--color-terracotta);
    color: #FFFFFF;
    border-radius: 14px;
    font-weight: 600;
}

.btn-terracotta:hover {
    background: var(--color-terracotta-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -6px rgba(142, 101, 71, 0.35);
}

.btn-outline {
    background: #FFFFFF;
    color: var(--color-navy);
    border: 1px solid var(--color-border-subtle);
    border-radius: 14px;
}

.btn-outline:hover {
    background: #F4EDE6;
    color: var(--color-terracotta-hover);
    border-color: var(--color-border-focus);
    transform: translateY(-2px);
}

.section-tag {
    background: #F4EDE6;
    color: var(--color-terracotta);
    border: 1px solid rgba(142, 101, 71, 0.2);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1.1rem;
    border-radius: var(--radius-pill);
}

.hero-badge {
    background: #F4EDE6;
    border: 1px solid rgba(142, 101, 71, 0.25);
    color: var(--color-terracotta);
    border-radius: var(--radius-pill);
}

.pill {
    background: #F4EDE6;
    border: 1px solid rgba(142, 101, 71, 0.18);
    color: #3A3835;
    border-radius: var(--radius-pill);
}

.pill:hover {
    background: var(--color-terracotta);
    border-color: var(--color-terracotta);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--color-terracotta-glow);
}



