/* ============================================
   OSTEOPATIA EM MOGI DAS CRUZES
   Landing Page — Taciane Naressi
   Design: Minimalista, Profissional & Moderno
   ============================================ */

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


:root {
    --color-primary: #1a2744;
    --color-primary-light: #2a3d5e;
    --color-primary-dark: #0f1a30;
    --color-accent: #8b6f4e;
    --color-accent-light: #c4a87a;
    --color-white: #ffffff;
    --color-off-white: #f8f7f4;
    --color-gray-50: #fafaf9;
    --color-gray-100: #f0efec;
    --color-gray-200: #e2e0db;
    --color-gray-300: #c8c5be;
    --color-gray-400: #9e9a91;
    --color-gray-500: #787368;
    --color-gray-600: #5c584f;
    --color-gray-700: #3d3a33;
    --color-gray-800: #262420;
    --color-text: #2c2c2c;
    --color-text-light: #6b6b6b;
    --color-whatsapp: #25D366;

    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.7;
    overflow-x: clip;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section {
    padding: 120px 0;
    overflow: clip;
    width: 100%;
    max-width: 100vw;
}

/* ----- Section Headers ----- */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.section-label-light {
    color: var(--color-accent-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title-light {
    color: var(--color-white);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-desc {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    overflow: clip;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-white);
    transition: var(--transition);
}

.logo-divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.25);
    transition: var(--transition);
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    transition: var(--transition);
}

.navbar.scrolled .logo-text {
    color: var(--color-primary);
}

.navbar.scrolled .logo-divider {
    background: var(--color-gray-200);
}

.navbar.scrolled .logo-sub {
    color: var(--color-accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-menu a {
    font-size: 0.84rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.01em;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-accent-light);
    transition: var(--transition);
}

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

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

.navbar.scrolled .nav-menu a {
    color: var(--color-gray-500);
}

.navbar.scrolled .nav-menu a:hover {
    color: var(--color-primary);
}

.navbar.scrolled .nav-menu a::after {
    background: var(--color-accent);
}

.nav-cta {
    padding: 10px 24px !important;
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    border-radius: 100px !important;
    color: var(--color-white) !important;
    backdrop-filter: blur(8px);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--color-accent) !important;
    border-color: var(--color-accent) !important;
    color: var(--color-white) !important;
}

.navbar.scrolled .nav-cta {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: var(--color-white) !important;
}

.navbar.scrolled .nav-cta:hover {
    background: var(--color-accent) !important;
    border-color: var(--color-accent) !important;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 10001;
    position: relative;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--color-primary);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-toggle.active span {
    background: var(--color-primary) !important;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: clip;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(10, 18, 36, 0.733) 0%,
            rgba(10, 18, 36, 0.767) 35%,
            rgba(10, 18, 36, 0.808) 65%,
            rgba(10, 18, 36, 0.877) 100%
        );
}

/* Decorative elements */
.hero-decoration {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: clip;
}

.hero-line {
    position: absolute;
    background: linear-gradient(180deg, transparent, rgba(196, 168, 122, 0.12), transparent);
}

.hero-line-1 {
    width: 1px;
    height: 100%;
    left: 10%;
    top: 0;
}

.hero-line-2 {
    width: 1px;
    height: 100%;
    right: 10%;
    top: 0;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(196, 168, 122, 0.06);
}

.hero-circle-1 {
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: circleRotate 40s linear infinite;
}

.hero-circle-2 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-style: dashed;
    border-color: rgba(196, 168, 122, 0.04);
    animation: circleRotate 30s linear infinite reverse;
}

@keyframes circleRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-corner {
    position: absolute;
    width: 80px;
    height: 80px;
}

.hero-corner-tl {
    top: 60px;
    left: 40px;
    border-top: 1px solid rgba(196, 168, 122, 0.15);
    border-left: 1px solid rgba(196, 168, 122, 0.15);
}

.hero-corner-br {
    bottom: 120px;
    right: 40px;
    border-bottom: 1px solid rgba(196, 168, 122, 0.15);
    border-right: 1px solid rgba(196, 168, 122, 0.15);
}

.hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 30%;
    right: 15%;
    background: radial-gradient(circle, rgba(196, 168, 122, 0.06) 0%, transparent 70%);
    filter: blur(60px);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding-top: 100px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    margin-bottom: 28px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent-light), transparent);
    opacity: 0.4;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    max-width: 540px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}

/* Hero Trust Badges */
.hero-badges {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.76rem;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.01em;
}

.hero-badge-item svg {
    color: var(--color-accent-light);
    opacity: 0.6;
    flex-shrink: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(139, 111, 78, 0.4);
}

.btn-outline {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
    color: var(--color-white);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.4);
}

.btn-whatsapp {
    background: var(--color-whatsapp);
    color: var(--color-white);
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
}

.btn-whatsapp svg {
    width: 22px;
    height: 22px;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

/* WhatsApp Hero Button */
.btn-whatsapp-hero {
    background: var(--color-whatsapp);
    color: var(--color-white);
}

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

.btn-whatsapp-hero:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.4);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: var(--color-whatsapp);
    color: var(--color-white);
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2.5s infinite;
}

.whatsapp-float svg {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
}

.whatsapp-float:hover {
    background: #20bd5a;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
    animation: none;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 48px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.4);
    transition: var(--transition);
}

.hero-scroll a:hover {
    color: var(--color-accent-light);
}

.scroll-text {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-arrow {
    animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.section-about {
    background: var(--color-off-white);
}

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

.about-image {
    position: relative;
}

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

.about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(26, 54, 54, 0.3), transparent);
    pointer-events: none;
}

.about-image-wrapper img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}

.about-image:hover .about-image-wrapper img {
    transform: scale(1.03);
}

.about-image-card {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 16px 40px rgba(190, 163, 124, 0.4);
    z-index: 2;
}

.about-image-card-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
}

.about-image-card-plus {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-right: 4px;
    align-self: flex-start;
    margin-top: 4px;
}

.about-image-card-text {
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.9;
}

.about-content {
    position: relative;
}

.about-role {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(190, 163, 124, 0.1);
    border-radius: 100px;
    letter-spacing: 0.02em;
}

.about-lead {
    font-size: 1.15rem !important;
    color: var(--color-text) !important;
    font-weight: 500;
    line-height: 1.7 !important;
    margin-bottom: 16px !important;
}

.about-content p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.8;
}

/* Credentials */
.about-credentials {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
    margin-bottom: 32px;
}

.about-credential {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: var(--color-white);
    border-radius: 12px;
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition-base);
}

.about-credential:hover {
    border-color: var(--color-accent-light);
    box-shadow: 0 4px 16px rgba(190, 163, 124, 0.1);
    transform: translateX(4px);
}

.about-credential-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.about-credential div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about-credential strong {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.about-credential span {
    font-size: 0.82rem;
    color: var(--color-text-light);
    line-height: 1.4;
}
/* ----- Certificate Section ----- */
.certificate-section {
    margin-top: 56px;
    padding-top: 48px;
    border-top: 1px solid var(--color-gray-200);
}

.certificate-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: center;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray-100);
    max-width: 800px;
    margin: 0 auto;
}

.certificate-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
}

.certificate-image-wrapper:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.certificate-image-wrapper img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    min-width: 75%;
    min-height: 100%;
    width: auto;
    height: 133%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.certificate-image-wrapper:hover img {
    transform: translate(-50%, -50%) rotate(-90deg) scale(1.02);
}

.certificate-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.certificate-badge {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
    border-radius: 50%;
    color: var(--color-white);
}

.certificate-badge svg {
    width: 20px;
    height: 20px;
}

.certificate-info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.3;
}

.certificate-info p {
    color: var(--color-text-light);
    font-size: 0.85rem;
    line-height: 1.6;
}

.btn-certificate {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: var(--transition);
    width: fit-content;
    margin-top: 8px;
}

.btn-certificate:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--color-white);
}

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

@media (max-width: 768px) {
    .certificate-section {
        margin-top: 40px;
        padding-top: 32px;
    }

    .certificate-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 16px;
    }

    .btn-certificate {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   WHAT IS OSTEOPATHY
   ============================================ */
.section-what {
    background: var(--color-white);
}

/* Intro */
.what-top {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px;
}

.what-desc {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-top: 20px;
}

/* Pilares — row com dividers */
.pillars-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.pillar {
    flex: 1;
    text-align: center;
    padding: 0 32px;
}

.pillar-num {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-accent-light);
    opacity: 0.35;
    line-height: 1;
    margin-bottom: 16px;
}

.pillar h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.pillar p {
    font-size: 0.88rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.pillar-divider {
    width: 1px;
    height: 100px;
    background: var(--color-gray-200);
    flex-shrink: 0;
    align-self: center;
}

/* ============================================
   PARALLAX QUOTE
   ============================================ */
.section-parallax {
    position: relative;
    height: 500px;
    overflow: clip;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 26, 48, 0.8) 0%,
        rgba(26, 39, 68, 0.75) 100%
    );
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 24px;
}

.parallax-content blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.6;
    margin-bottom: 20px;
}

.parallax-content cite {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-accent-light);
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* ============================================
   TREATMENTS
   ============================================ */
.section-treatments {
    background: var(--color-off-white);
}

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

.treatment-card {
    padding: 40px 32px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-gray-100);
    transition: var(--transition);
}

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

.treatment-icon {
    width: 56px;
    height: 56px;
    color: var(--color-accent);
    margin-bottom: 24px;
}

.treatment-icon svg {
    width: 100%;
    height: 100%;
}

.treatment-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.treatment-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   BENEFITS
   ============================================ */
.section-benefits {
    background: var(--color-white);
}

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

.benefits-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--color-off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    color: var(--color-accent);
}

.benefit-check svg {
    width: 14px;
    height: 14px;
}

.benefit-item h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.benefit-item p {
    font-size: 0.88rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.benefits-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
}

/* ============================================
   PEDIATRIC
   ============================================ */
.section-pediatric {
    background: var(--color-primary);
}

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

.pediatric-content .section-label {
    color: var(--color-accent-light);
    border-color: rgba(190, 163, 124, 0.3);
}

.pediatric-content .section-title {
    color: var(--color-white);
}

.pediatric-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 16px;
}

.pediatric-content > p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.pediatric-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
    margin-bottom: 36px;
}

.pediatric-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pediatric-benefit svg {
    color: var(--color-accent-light);
    flex-shrink: 0;
}

.pediatric-benefit span {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}

.pediatric-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

/* ============================================
   PROCESS
   ============================================ */
.section-process {
    background: var(--color-off-white);
}

.process-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}

.process-step {
    flex: 1;
    max-width: 260px;
    text-align: center;
    padding: 0 20px;
}

.process-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.process-connector {
    flex-shrink: 0;
    width: 60px;
    height: 2px;
    background: var(--color-gray-200);
    margin-top: 28px;
}

/* ============================================
   GALLERY
   ============================================ */
.section-gallery {
    background: var(--color-off-white);
}

/* Bento Grid */
.gallery-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 16px;
}

.gallery-a { grid-column: 1; grid-row: 1 / 3; }
.gallery-b { grid-column: 2; grid-row: 1; }
.gallery-c { grid-column: 3; grid-row: 1; }
.gallery-d { grid-column: 2; grid-row: 2; }
.gallery-e { grid-column: 3; grid-row: 2; }

.gallery-f { display: none; }

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-a img {
    object-position: center 20%;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 26, 48, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay span {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transform: translateY(8px);
    transition: transform 0.4s ease;
}

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

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

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

/* ============================================
   FAQ
   ============================================ */
.section-faq {
    background: var(--color-off-white);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-gray-200);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-primary);
    transition: var(--transition);
}

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

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-gray-400);
    transition: var(--transition);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--color-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding-bottom: 24px;
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ============================================
   INLINE WHATSAPP CTAs
   ============================================ */
.section-wa {
    text-align: center;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--color-gray-200);
}

.section-wa p {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 16px;
    font-weight: 500;
}

.btn-whatsapp-inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-whatsapp);
    color: var(--color-white);
    padding: 14px 32px;
    border-radius: 60px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.25);
}

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

.btn-whatsapp-inline:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.4);
}

/* ============================================
   CTA / CONTACT
   ============================================ */
.section-cta {
    background: var(--color-off-white);
}

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

.cta-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.cta-content {
    position: relative;
}

.cta-desc {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.cta-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.cta-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    flex-shrink: 0;
}

.cta-info-item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 2px;
}

.cta-info-item span {
    font-size: 0.88rem;
    color: var(--color-text-light);
}

.cta-email {
    font-size: 0.88rem;
    color: var(--color-text-light);
    text-decoration: none;
    transition: var(--transition);
}

.cta-email:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.btn-whatsapp-big {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--color-whatsapp);
    color: var(--color-white);
    padding: 18px 48px;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.25);
}

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

.btn-whatsapp-big:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-primary-dark);
    padding: 60px 0 0;
    overflow: clip;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-white);
    display: block;
}

.footer-logo-sub {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    display: block;
    margin-bottom: 16px;
}

.footer-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--color-accent-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    text-align: center;
}

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

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-grid,
    .benefits-layout,
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .cta-image {
        display: none;
    }

    .pillars-row {
        flex-wrap: wrap;
        gap: 40px 0;
        justify-content: center;
    }

    .pillar {
        flex: 0 0 50%;
    }

    .pillar-divider {
        display: none;
    }

    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 240px 240px 240px;
    }

    .gallery-a { grid-column: 1; grid-row: 1 / 3; }
    .gallery-b { grid-column: 2; grid-row: 1; }
    .gallery-c { grid-column: 2; grid-row: 2; }
    .gallery-d { grid-column: 1; grid-row: 3; }
    .gallery-e { grid-column: 2; grid-row: 3; }

    .about-content {
        order: -1;
    }

    .about-image {
        max-width: 480px;
        margin: 0 auto;
        order: 2;
    }

    .about-image-card {
        right: -12px;
        bottom: -12px;
        padding: 16px 20px;
    }

    .benefits-image {
        max-width: 480px;
        margin: 0 auto;
    }

    .btn-whatsapp-big {
        padding: 16px 36px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .process-connector {
        width: 30px;
    }

    .pediatric-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .pediatric-image {
        max-width: 480px;
        margin: 0 auto;
    }

}

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

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        gap: 16px;
        padding: 40px;
        transition: var(--transition-slow);
        box-shadow: var(--shadow-xl);
        z-index: 10000;
    }

    .nav-menu.active {
        right: 0;
    }

    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .nav-menu a {
        color: var(--color-gray-600) !important;
        font-size: 1rem;
        background: none !important;
    }

    .nav-menu a:hover {
        color: var(--color-primary) !important;
    }

    .nav-cta {
        text-align: center;
        width: 100%;
        justify-content: center;
    }

    .hero-content {
        padding-top: 80px;
    }

    .hero-decoration {
        display: none;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .about-content {
        order: -1;
    }

    .about-image {
        order: 2;
    }

    .about-stats {
        gap: 16px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .about-credential {
        padding: 14px 16px;
    }

    .about-image-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
        justify-content: center;
        box-shadow: 0 8px 24px rgba(190, 163, 124, 0.3);
    }

    .pillars-row {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

    .pillar {
        flex: none;
        width: 100%;
        padding: 0 16px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .btn-whatsapp-big {
        padding: 16px 36px;
        font-size: 1rem;
    }

    .cta-image {
        display: none;
    }

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

    .gallery-bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 220px 220px;
    }

    .gallery-a { grid-column: 1 / 3; grid-row: 1; }
    .gallery-b { grid-column: 1; grid-row: 2; }
    .gallery-c { grid-column: 2; grid-row: 2; }
    .gallery-d { grid-column: 1; grid-row: 3; }
    .gallery-e { grid-column: 2; grid-row: 3; }

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

    .pediatric-content {
        order: -1;
    }

    .pediatric-image {
        order: 2;
        max-width: 100%;
    }

    .pediatric-benefits {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pediatric-lead {
        font-size: 1rem;
    }

    .process-grid {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .process-connector {
        width: 2px;
        height: 32px;
        margin: 0;
    }

    .process-step {
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 64px 0;
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .about-stats {
        flex-direction: row;
        gap: 12px;
    }

    .stat {
        padding: 12px 4px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .about-credentials {
        gap: 12px;
    }

    .about-credential-icon {
        width: 36px;
        height: 36px;
    }

    .gallery-bento {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }

    .gallery-a { grid-column: 1; grid-row: 1; }
    .gallery-b { grid-column: 1; grid-row: 2; }
    .gallery-c { grid-column: 1; grid-row: 3; }
    .gallery-d { grid-column: 1; grid-row: 4; }
    .gallery-e { grid-column: 1; grid-row: 5; }

    .section-parallax {
        height: 400px;
    }

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

    .hero-scroll {
        display: none;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 86px;
        height: 86px;
    }

    .whatsapp-float svg {
        width: 32px;
        height: 32px;
    }
}
