/* ============================================
   DR. RENATO DIADELMO - LP DESIGN SYSTEM v2
   Premium, conversion-focused, non-generic
   ============================================ */

:root {
    --green-50: #ecfdf5;
    --green-100: #d1fae5;
    --green-200: #a7f3d0;
    --green-400: #4ade80;
    --green-500: #45ac8b;
    --green-600: #38946f;
    --green-700: #2d7a5a;
    --green-800: #1b5e42;
    --dark-900: #0f172a;
    --dark-800: #1e293b;
    --dark-700: #334155;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --white: #ffffff;
    --amber-400: #f59e0b;
    --red-50: #fef2f2;
    --red-100: #fee2e2;
    --red-500: #ef4444;
    --red-600: #dc2626;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--dark-800);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* =====================
   ANIMATIONS
   ===================== */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="fade-left"]  { transform: translateX(40px); }
[data-animate="fade-up"]    { transform: translateY(40px); }
[data-animate].is-visible   { opacity: 1; transform: translate(0, 0); }

/* =====================
   HEADER
   ===================== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.header.scrolled {
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.header-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.brand-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark-900);
}
.brand-sub {
    font-size: 0.75rem;
    color: var(--green-500);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.header-nav { display: flex; gap: 2rem; }
.header-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.2s;
    position: relative;
}
.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--green-500);
    transition: width 0.3s;
}
.header-nav a:hover { color: var(--green-500); }
.header-nav a:hover::after { width: 100%; }
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.4rem;
    background: var(--green-500);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: background 0.2s, transform 0.2s;
}
.header-cta:hover {
    background: var(--green-600);
    transform: translateY(-1px);
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--dark-900);
    border-radius: 2px;
    transition: 0.3s;
}

/* =====================
   BUTTONS
   ===================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    background: var(--green-500);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(69, 172, 139, 0.4);
    line-height: 1.4;
}
.btn-primary:hover {
    background: var(--green-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(69, 172, 139, 0.5);
}
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1.05rem; }
.btn-light {
    background: var(--white);
    color: var(--green-700);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.btn-light:hover {
    background: var(--green-50);
    color: var(--green-800);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.btn-pulse { animation: btn-glow 2.5s ease-in-out infinite; }
@keyframes btn-glow {
    0%, 100% { box-shadow: 0 4px 14px rgba(69, 172, 139, 0.4); }
    50%      { box-shadow: 0 4px 28px rgba(69, 172, 139, 0.6); }
}

/* =====================
   BADGES
   ===================== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 1rem;
    background: var(--green-100);
    color: var(--green-700);
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}
.section-badge-light {
    background: rgba(255, 255, 255, 0.12);
    color: var(--green-200);
}
.section-badge-danger {
    background: var(--red-50);
    color: var(--red-600);
}
.section-title {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark-900);
    margin-bottom: 1.5rem;
}
.section-title-light { color: var(--white); }

/* =====================
   HERO
   ===================== */
.hero {
    padding-top: 80px;
    background: linear-gradient(135deg, var(--white) 0%, var(--green-50) 50%, var(--green-100) 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(69, 172, 139, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem 0;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1.2rem;
    background: var(--green-100);
    color: var(--green-700);
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}
.hero-title {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark-900);
    margin-bottom: 1rem;
}
.hero-title em {
    color: var(--green-500);
    font-style: italic;
}
.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--green-600);
    margin-bottom: 1.5rem;
}
.hero-copy {
    font-size: 1.02rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 540px;
}

/* Hero Proof Bar (numeros) */
.hero-proof {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding: 1.2rem 0;
    border-top: 1px solid var(--gray-200);
}
.hero-proof-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.proof-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--green-500);
    line-height: 1;
}
.proof-label {
    font-size: 0.78rem;
    color: var(--gray-500);
    line-height: 1.3;
    font-weight: 500;
}
.proof-stars {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.proof-rating {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--amber-400);
    line-height: 1;
}
.hero-proof-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}
.hero-img-wrapper {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}
.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-img-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.7), transparent);
}
.overlay-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
}
.hero-floating-card {
    position: absolute;
    bottom: 50px;
    left: -30px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 1.4rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: float 4s ease-in-out infinite;
    max-width: 280px;
}
.hero-floating-card strong {
    font-size: 0.9rem;
    color: var(--dark-900);
    display: block;
}
.hero-floating-card p {
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-top: 2px;
}
.floating-icon {
    width: 44px; height: 44px;
    background: var(--green-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* Hero Continuation - hidden on desktop */
.hero-continuation {
    display: none;
}

/* Hero Trust Bar */
.hero-trust-bar {
    background: var(--dark-900);
    padding: 1rem 1.5rem;
    margin-top: 3rem;
}
.trust-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-300);
    font-size: 0.85rem;
    font-weight: 500;
}
.trust-bar-item i,
.trust-bar-item svg {
    color: var(--green-400);
    stroke: var(--green-400);
}

/* =====================
   CAUSA REAL
   ===================== */
.causa {
    padding: 6rem 1.5rem;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}
.causa-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

/* Remedio Illustration */
.remedio-illustration {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    text-align: center;
}
.remedio-svg {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto;
}
.remedio-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--red-500);
}

/* Causa Content */
.section-badge-danger {
    background: var(--red-50);
    color: var(--red-600);
    border: 1px solid var(--red-100);
}
.text-danger {
    color: var(--red-500);
    position: relative;
}
.text-danger::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0;
    width: 100%; height: 3px;
    background: var(--red-500);
    opacity: 0.25;
    border-radius: 2px;
}
.causa-impact {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Diagrama cerebro-coluna */
.causa-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}
.diagram-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
}
.diagram-step p {
    font-size: 0.8rem;
    color: var(--gray-500);
}
.diagram-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--green-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-500);
}
.diagram-icon i,
.diagram-icon svg {
    color: var(--green-500);
    stroke: var(--green-500);
}
.diagram-icon-alert {
    background: var(--red-50);
    color: var(--red-500);
}
.diagram-icon-alert i,
.diagram-icon-alert svg {
    color: var(--red-500);
    stroke: var(--red-500);
}
.diagram-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gray-300), var(--gray-200));
    margin: 0 -0.5rem;
    position: relative;
    top: -14px;
    left: 30px;
}

.causa-explain {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--green-50);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--green-500);
}
.causa-explain p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* =====================
   ESPECIALISTA
   ===================== */
.especialista {
    padding: 6rem 1.5rem;
    background: var(--white);
}
.especialista-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
}
.especialista-role {
    display: block;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--green-500);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 0.3rem;
}
.especialista-intro {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    padding-left: 1rem;
    border-left: 3px solid var(--green-200);
}

/* Credentials */
.credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}
.credential-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem 1.4rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.credential-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-200);
}
.credential-item-highlight {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-color: #fcd34d;
}
.credential-item-highlight:hover {
    border-color: #f59e0b;
}
.credential-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--green-500);
    line-height: 1;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.credential-icon {
    width: 52px; height: 52px;
    background: var(--green-50);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.credential-icon-gold {
    background: #fef3c7;
}
.credential-item strong {
    font-size: 1rem;
    color: var(--dark-900);
    display: block;
    margin-bottom: 0.3rem;
}
.credential-item p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.5;
}
.credential-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.3rem;
}

/* Especialista Visual */
.especialista-visual { position: relative; }
.especialista-img-box {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.especialista-img-box img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.especialista-badge-card {
    position: absolute;
    bottom: 80px;
    left: -16px; right: -16px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 1.2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.badge-card-icon {
    width: 40px; height: 40px;
    background: var(--green-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.especialista-badge-card strong {
    font-size: 0.95rem;
    color: var(--dark-900);
    display: block;
}
.especialista-badge-card p {
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-top: 2px;
}

/* Mini profile */
.especialista-mini-profile {
    position: absolute;
    top: -24px; right: 16px;
    background: var(--white);
    padding: 0.6rem 1rem 0.6rem 0.6rem;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 2;
}
.mini-profile-img {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
}
.especialista-mini-profile strong {
    font-size: 0.82rem;
    color: var(--dark-900);
    display: block;
}
.especialista-mini-profile p {
    font-size: 0.7rem;
    color: var(--gray-400);
}

/* =====================
   DEPOIMENTOS
   ===================== */
.depoimentos {
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, var(--dark-900) 0%, var(--dark-800) 50%, #162921 100%);
    position: relative;
    overflow: hidden;
}
.depoimentos::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(69, 172, 139, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.depoimentos-inner {
    max-width: 1280px;
    margin: 0 auto;
}
.depoimentos-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Google Review Badge */
.google-review-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1rem 2rem;
    margin-top: 1.5rem;
}
.review-badge-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}
.review-badge-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.rating-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}
.rating-stars { display: flex; gap: 2px; }
.review-badge-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Depoimento Card */
.card-depoimento {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, border-color 0.3s;
}
.card-depoimento:hover {
    transform: translateY(-4px);
    border-color: rgba(69, 172, 139, 0.3);
}
.depoimento-stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.depoimento-stars svg { width: 18px; height: 18px; }
.depoimento-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.5rem;
}
.depoimento-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.depoimento-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--green-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}
.depoimento-name { font-size: 0.95rem; font-weight: 600; color: var(--white); }
.depoimento-source { font-size: 0.8rem; color: var(--gray-400); display: flex; align-items: center; gap: 0.3rem; }
.depoimento-source .google-g-icon { width: 12px; height: 12px; }

/* Depoimentos visual (citacao + doutor) */
.depoimentos-visual {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.depoimentos-doctor-img {
    width: 80px; height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 3px solid var(--green-500);
    flex-shrink: 0;
}
.depoimentos-visual-text p {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    line-height: 1.5;
}
.depoimentos-visual-text span {
    font-size: 0.85rem;
    color: var(--green-400);
    font-weight: 500;
    margin-top: 0.5rem;
    display: block;
}
.depoimentos-cta { text-align: center; margin-top: 2.5rem; }

/* Swiper Depoimentos */
.depoimentos-swiper { padding: 0 0 3rem 0; }
.depoimentos-swiper .swiper-pagination-bullet {
    background: var(--gray-400);
    opacity: 0.5;
}
.depoimentos-swiper .swiper-pagination-bullet-active {
    background: var(--green-500);
    opacity: 1;
}

/* =====================
   FOOTER
   ===================== */
.footer {
    background: var(--dark-900);
    padding: 4rem 1.5rem 2rem;
    color: var(--gray-300);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    display: block;
    line-height: 1.2;
}
.footer-role {
    font-size: 0.8rem;
    color: var(--green-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 1.5rem;
}
.footer-partner {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.partner-label {
    font-size: 0.7rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}
.partner-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-top: 0.2rem;
}
.partner-sub { font-size: 0.75rem; color: var(--gray-400); display: block; }
.footer h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.footer li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--gray-300);
}
.footer li i,
.footer li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--green-500);
    stroke: var(--green-500);
}
.footer li a { color: var(--gray-300); transition: color 0.2s; }
.footer li a:hover { color: var(--green-400); }
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-bottom p { font-size: 0.8rem; color: var(--gray-500); }

/* =====================
   MAP
   ===================== */
.map-section { width: 100%; line-height: 0; }
.map-section iframe { width: 100%; height: 400px; border: 0; }

/* =====================
   WHATSAPP FLOAT
   ===================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #25d366;
    padding: 0.9rem 1.4rem;
    border-radius: 60px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: pulse-whatsapp 2.5s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}
.whatsapp-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
}
@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }
    50%      { box-shadow: 0 6px 32px rgba(37, 211, 102, 0.6); }
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
    .hero-inner { gap: 3rem; }
    .hero-title { font-size: 2.6rem; }
    .section-title { font-size: 2.2rem; }
    .especialista-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .causa-inner { gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .hero-proof { gap: 1rem; }
    .proof-number, .proof-rating { font-size: 1.6rem; }
}

@media (max-width: 768px) {
    /* Header */
    .header-nav {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 0.8rem;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-md);
    }
    .header-nav.open { display: flex; }
    .header-cta { display: none; }
    .mobile-toggle { display: flex; }
    .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-toggle.active span:nth-child(2) { opacity: 0; }
    /* =============================================
       MOBILE GLOBALS
       ============================================= */

    /* =============================================
       HERO MOBILE: Foto fullscreen + titulo na base
       Copy, botao e proof ficam ABAIXO da dobra
       ============================================= */
    .hero {
        padding-top: 0;
        background: none;
    }
    .hero::before { display: none; }

    .hero-inner {
        display: block;
        position: relative;
        width: 100%;
        height: 100svh;
        padding: 0;
        overflow: hidden;
    }

    /* === Foto fullscreen === */
    .hero-image {
        position: absolute;
        inset: 0;
        z-index: 0;
        overflow: hidden;
    }
    .hero-img-wrapper {
        position: absolute;
        inset: 0;
        max-width: none;
        width: 100%;
        height: 100%;
        border-radius: 0;
        aspect-ratio: auto;
        box-shadow: none;
        overflow: hidden;
    }
    .hero-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        -webkit-user-drag: none;
        user-select: none;
        pointer-events: none;
    }
    .hero-img-overlay { display: none; }
    .hero-floating-card { display: none; }

    /* Gradiente mais forte de baixo para cima para garantir leitura e transição perfeita */
    .hero-image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to top,
            var(--dark-900) -2%,
            var(--dark-900) 15%,
            rgba(15, 23, 42, 0.85) 35%,
            rgba(15, 23, 42, 0.2) 60%,
            transparent 75%
        );
        z-index: 1;
        pointer-events: none;
    }

    /* === Conteudo sobreposto na BASE da foto === */
    .hero-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 2;
        padding: 0 1.5rem 3rem;
        text-align: left;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    .hero-badge {
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        color: var(--white);
        margin-bottom: 0.6rem;
        align-self: flex-start;
        font-size: 0.72rem;
    }
    .hero-badge i,
    .hero-badge svg {
        color: var(--green-400);
        stroke: var(--green-400);
    }
    .hero-title {
        font-size: 1.55rem;
        color: var(--white);
        text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
        margin-bottom: 0.3rem;
    }
    .hero-title em { color: var(--green-400); }
    .hero-subtitle {
        font-size: 0.88rem;
        color: var(--green-200);
        margin-bottom: 0.8rem;
        text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    }
    /* Copy e CTA ficam na primeira tela */
    .hero-content .hero-copy {
        display: none;
    }
    .hero-content .btn-primary {
        display: inline-flex;
        width: 100%;
        justify-content: center;
        font-size: 0.9rem;
        padding: 0.9rem 1.5rem;
    }
    /* Proof numbers escondidos aqui - vao pro bloco continuation */
    .hero-proof {
        display: none;
    }

    /* === BLOCO 2: Proof bar acima da proxima secao === */
    .hero-continuation {
        display: block;
        position: relative;
        z-index: 3;
        background: var(--dark-900);
        padding: 2.5rem 1.5rem;
    }
    .hero-continuation .hero-copy {
        display: block;
        font-size: 1.1rem;
        color: var(--gray-300);
        line-height: 1.6;
        text-align: left;
        margin-bottom: 2.5rem;
        font-weight: 400;
    }
    .hero-continuation .hero-copy strong {
        color: var(--white);
        font-weight: 700;
    }
    .hero-continuation .hero-copy .text-highlight {
        display: block;
        color: var(--green-400);
        font-weight: 600;
        font-size: 1.2rem;
        border-left: 3px solid var(--green-500);
        padding-left: 1.2rem;
        margin-top: 1.2rem;
        line-height: 1.5;
    }
    .hero-continuation .hero-proof-mobile {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .hero-continuation .hero-proof-item {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
    .hero-continuation .proof-number { color: var(--green-400); font-size: 2.2rem; line-height: 1; width: 70px; text-align: left; }
    .hero-continuation .proof-label { color: rgba(255, 255, 255, 0.75); font-size: 0.9rem; line-height: 1.3; }
    .hero-continuation .hero-proof-divider { background: rgba(255, 255, 255, 0.12); width: 1px; height: 32px; }
    .hero-continuation .proof-rating { color: var(--amber-400); font-size: 1.4rem; font-family: var(--font-display); font-weight: 900; }
    .hero-trust-bar { margin-top: -1px; } /* Remove faixa branca do desktop nativo */
    .trust-bar-inner { gap: 1rem; flex-wrap: wrap; justify-content: center; }
    .trust-bar-item { font-size: 0.78rem; display: flex; align-items: center; justify-content: center; }

    /* Causa */
    .causa { padding: 4rem 1.5rem; }
    .causa-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .causa-visual { order: -1; }
    .remedio-svg { max-width: 220px; }
    .section-title { font-size: 1.8rem; }
    .causa-diagram { gap: 0; padding: 1rem; }
    .diagram-connector { width: 40px; }

    /* Especialista */
    .especialista { padding: 4rem 1.5rem; }
    .especialista-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .especialista-visual { order: -1; }
    .especialista-badge-card { left: 8px; right: 8px; bottom: 60px; }
    .especialista-mini-profile { top: -18px; right: 8px; }

    /* Depoimentos */
    .depoimentos { padding: 4rem 1rem; }
    .google-review-badge { padding: 0.8rem 1.2rem; gap: 0.8rem; }
    .rating-number { font-size: 1.4rem; }
    .depoimentos-visual { flex-direction: column; text-align: center; }
    .depoimentos-doctor-img { width: 64px; height: 64px; }

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

    /* WhatsApp */
    .whatsapp-label { display: none; }
    .whatsapp-float { padding: 0.9rem; border-radius: 50%; }

    /* Map */
    .map-section iframe { height: 280px; }
}

@media (max-width: 400px) {
    .hero-title { font-size: 1.45rem; }
    .hero-subtitle { font-size: 0.82rem; }
    .hero-continuation .proof-number,
    .hero-continuation .proof-rating { font-size: 2rem; }
    .hero-continuation .hero-proof-divider { display: none; }
    .hero-continuation .hero-proof-mobile { display: flex; flex-direction: column; gap: 1.2rem; align-items: flex-start; }
    .btn-lg { padding: 0.9rem 1.5rem; font-size: 0.92rem; }
    .hero-trust-bar { padding: 1.5rem 0.5rem; }
    .trust-bar-inner { gap: 1.5rem; flex-wrap: nowrap; justify-content: center; }
    .trust-bar-item span { display: none; }
}
