/* ══════════════════════════════════════════════════════════════
   MEDORGANIZA — Design System v2
   All tokens, components, and utilities centralized here.
   ══════════════════════════════════════════════════════════════ */

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ─── DESIGN TOKENS ─── */
:root {
    /* Colors */
    --sky: #87CEEB;
    --royal: #4169E1;
    --royal-dark: #2D4EC4;
    --royal-light: #6B8FEF;
    --bg: #FFFFFF;
    --bg-alt: #F5F8FC;
    --bg-warm: #F0F4F9;
    --border: #E4EBF2;
    --text: #1A2332;
    --text-soft: #4A5A72;
    --text-muted: #8A9BB0;
    --success: #22C55E;
    --error: #E44A4A;

    /* Fonts */
    --display: 'Fraunces', Georgia, serif;
    --body: 'DM Sans', -apple-system, sans-serif;

    /* Spacing / Layout */
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 2px 12px rgba(65, 105, 225, 0.07);
    --shadow-md: 0 8px 32px rgba(65, 105, 225, 0.10);
}

html { scroll-behavior: smooth; }

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

/* ─── SCROLL PROGRESS BAR ─── */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sky), var(--royal));
    z-index: 1001;
    width: 0%;
    transition: width 0.1s linear;
}

/* ─── CURSOR GLOW ─── */
#cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.18) 0%, rgba(65, 105, 225, 0.06) 40%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
    will-change: transform;
}

/* ════════════════════════════════════════════════
   UTILITY: Container & Sections
   ════════════════════════════════════════════════ */

.container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 28px;
}

.section { padding: 100px 0; position: relative; }
.section-alt { background: var(--bg-alt); position: relative; }

.sec-label {
    font-family: var(--body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--royal);
    margin-bottom: 16px;
}

.sec-title {
    font-family: var(--display);
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 16px;
}

.sec-sub {
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.65;
    max-width: 540px;
}

.sec-label-center { text-align: center; display: block; }
.sec-title-center { text-align: center; }
.sec-sub-center { text-align: center; margin: 0 auto 48px; }

/* ─── BACKGROUND SHAPES ─── */
.bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
}

.bg-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--royal);
    top: -100px;
    right: -100px;
    animation: shapeDrift 20s ease-in-out infinite;
}

.bg-shape-2 {
    width: 250px;
    height: 250px;
    background: var(--sky);
    bottom: -60px;
    left: -60px;
    animation: shapeDrift 25s ease-in-out infinite reverse;
}

.bg-shape-3 {
    width: 150px;
    height: 150px;
    background: var(--royal-light);
    top: 50%;
    left: 50%;
    animation: shapeDrift 18s ease-in-out infinite;
}

@keyframes shapeDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -30px) scale(1.05); }
    66% { transform: translate(-15px, 20px) scale(0.95); }
}

/* ════════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════════ */

/* Reveal with blur + slide */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    filter: blur(4px);
    transition: opacity 0.8s cubic-bezier(.22,1,.36,1),
                transform 0.8s cubic-bezier(.22,1,.36,1),
                filter 0.8s cubic-bezier(.22,1,.36,1);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* Stagger with blur */
.stagger > * {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(3px);
    transition: opacity 0.6s cubic-bezier(.22,1,.36,1),
                transform 0.6s cubic-bezier(.22,1,.36,1),
                filter 0.6s cubic-bezier(.22,1,.36,1);
}

.stagger.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); filter: blur(0); transition-delay: 0.04s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); filter: blur(0); transition-delay: 0.10s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); filter: blur(0); transition-delay: 0.16s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); filter: blur(0); transition-delay: 0.22s; }
.stagger.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); filter: blur(0); transition-delay: 0.28s; }
.stagger.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); filter: blur(0); transition-delay: 0.34s; }

/* Gradient text animated */
.gradient-text {
    background: linear-gradient(135deg, var(--royal), var(--sky), var(--royal));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradShift 6s ease-in-out infinite;
}

@keyframes gradShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); filter: blur(4px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════ */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: background 0.3s;
}

.header.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}

.header-inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.header-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: transform 0.3s;
}

.header-logo:hover img {
    transform: rotate(-8deg) scale(1.05);
}

.header-logo-name {
    font-family: var(--body);
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.4px;
}

.header-logo-name span { color: var(--royal); }

/* ════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all .25s;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-family: var(--body);
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn:hover::after { transform: translateX(100%); }

.btn-primary {
    background: var(--royal);
    color: #fff;
}

.btn-primary:hover {
    background: var(--royal-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
    background: var(--bg-alt);
    transform: translateY(-1px);
}

.btn-header {
    background: var(--royal);
    color: #fff;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

.btn-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-header:hover::after { transform: translateX(100%); }

.btn-header:hover {
    background: var(--royal-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--royal);
    color: #fff;
    padding: 16px 36px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 6px 20px rgba(65, 105, 225, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.8s;
}

.btn-hero:hover::after { transform: translateX(100%); }

.btn-hero:hover {
    background: var(--royal-dark);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(65, 105, 225, 0.35);
}

.btn-hero .arrow {
    display: inline-block;
    transition: transform 0.3s;
}

.btn-hero:hover .arrow { transform: translateX(5px); }

/* ════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════ */

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(135, 206, 235, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content { max-width: 520px; }

.hero-tag {
    display: inline-block;
    font-family: var(--body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--royal);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeDown 0.8s 0.2s forwards;
}

.hero h1 {
    font-family: var(--display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 20px;
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
    animation: heroLineUp 0.7s cubic-bezier(.22,1,.36,1) forwards;
}

@keyframes heroLineUp {
    from { opacity: 0; transform: translateY(20px); filter: blur(4px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero h1 em {
    font-style: italic;
    font-weight: 500;
    color: var(--royal);
}

.hero p {
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 400px;
}

.hero-ring-outer {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1.5px solid rgba(135, 206, 235, 0.3);
    position: absolute;
    animation: heroRings 12s ease-in-out infinite;
}

.hero-ring-mid {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 1.5px solid rgba(65, 105, 225, 0.15);
    position: absolute;
    animation: heroRings 12s ease-in-out infinite reverse;
}

.hero-ring-inner {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--sky), var(--royal));
    opacity: 0.85;
    animation: heroFloat 5s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.hero-ring-inner img {
    width: 70%;
    height: 70%;
    border-radius: 50%;
    object-fit: cover;
}

@keyframes heroRings {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(8deg); }
}

@keyframes heroFloat {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.06) translateY(-6px); }
}

.hero-visual-label {
    position: absolute;
    bottom: 20px;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
    opacity: 0;
    animation: fadeUp 1s 1s forwards;
}

/* Hero particles */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
    background: transparent;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle:nth-child(1) { width: 6px; height: 6px; background: var(--sky); left: 10%; bottom: -5%; animation-duration: 14s; animation-delay: 0s; }
.particle:nth-child(2) { width: 4px; height: 4px; background: var(--royal); left: 25%; bottom: -5%; animation-duration: 11s; animation-delay: 1s; }
.particle:nth-child(3) { width: 8px; height: 8px; background: rgba(135, 206, 235, 0.3); left: 55%; bottom: -5%; animation-duration: 16s; animation-delay: 0.5s; }
.particle:nth-child(4) { width: 5px; height: 5px; background: var(--royal-light); left: 75%; bottom: -5%; animation-duration: 12s; animation-delay: 2s; }
.particle:nth-child(5) { width: 7px; height: 7px; background: rgba(135, 206, 235, 0.2); left: 45%; bottom: -5%; animation-duration: 15s; animation-delay: 1.5s; }
.particle:nth-child(6) { width: 3px; height: 3px; background: var(--royal); left: 15%; bottom: -5%; animation-duration: 10s; animation-delay: 0.8s; }
.particle:nth-child(7) { width: 9px; height: 9px; background: rgba(135, 206, 235, 0.15); left: 85%; bottom: -5%; animation-duration: 18s; animation-delay: 3s; }
.particle:nth-child(8) { width: 4px; height: 4px; background: var(--royal-light); left: 35%; bottom: -5%; animation-duration: 13s; animation-delay: 0.3s; }

@keyframes particleFloat {
    0% { transform: translateY(0) scale(0); opacity: 0; }
    10% { opacity: 0.6; transform: translateY(-30px) scale(1); }
    90% { opacity: 0.4; }
    100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}

/* ─── SVG ICON ANIMATIONS ─── */

.icon-pulse { animation: iconPulse 3s ease-in-out infinite; }
@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.08); opacity: 1; }
}

.icon-spin-slow { animation: iconSpin 8s linear infinite; transform-origin: center; }
@keyframes iconSpin { to { transform: rotate(360deg); } }

.icon-ring { animation: iconRing 2s ease-in-out infinite; transform-origin: center; }
@keyframes iconRing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(6deg); }
    75% { transform: rotate(-4deg); }
}

.icon-dash { stroke-dasharray: 100; stroke-dashoffset: 100; animation: dashDraw 2s ease-in-out infinite alternate; }
@keyframes dashDraw { to { stroke-dashoffset: 0; } }

.icon-pulse-ring circle:last-child { animation: ringPulse 2.5s ease-in-out infinite; transform-origin: center; }
@keyframes ringPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.icon-float { animation: iconFloat 4s ease-in-out infinite; }
@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* ════════════════════════════════════════════════
   PAIN BANNER
   ════════════════════════════════════════════════ */

.pain-banner {
    background: #1A2332;
    color: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.pain-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(135, 206, 235, 0.04) 0%, transparent 60%);
    animation: painGlow 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes painGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(30px, 20px) scale(1.2); opacity: 1; }
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.pain-item {
    border-right: 1px solid rgba(255,255,255,0.08);
    padding: 0 20px;
    position: relative;
}

.pain-item:last-child { border-right: none; }

.pain-progress {
    height: 3px;
    background: rgba(135, 206, 235, 0.1);
    border-radius: 2px;
    margin-bottom: 20px;
    overflow: hidden;
}

.pain-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--sky), var(--royal));
    border-radius: 2px;
    transition: width 1.5s cubic-bezier(.22,1,.36,1);
}

.pain-progress-bar.filled { width: var(--progress, 80%); }

.pain-num {
    font-family: var(--display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--sky);
    line-height: 1;
    margin-bottom: 8px;
}

.pain-item p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
    max-width: 220px;
    margin: 0 auto;
}

.pain-item .pain-highlight { color: #fff; font-weight: 600; }

/* ════════════════════════════════════════════════
   PRODUTOS (Product Grid)
   ════════════════════════════════════════════════ */

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 48px;
}

.produto-item {
    background: var(--bg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(.22,1,.36,1);
    position: relative;
}

.produto-item:hover {
    background: var(--bg-alt);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(65, 105, 225, 0.08);
    z-index: 1;
}

.produto-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    color: var(--royal);
    transition: transform 0.4s 0.05s;
}

.produto-item:hover .produto-icon { transform: scale(1.12) rotate(-4deg); color: var(--royal-dark); }

.produto-icon svg { width: 100%; height: 100%; transition: all 0.4s; }
.produto-item:hover .produto-icon svg { filter: drop-shadow(0 2px 8px rgba(65, 105, 225, 0.2)); }

.produto-item h3 {
    font-family: var(--body);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.produto-item p {
    font-size: 0.82rem;
    color: var(--text-soft);
    line-height: 1.6;
    flex: 1;
}

.produto-item .price-tag {
    margin-top: 20px;
    font-size: 0.74rem;
    color: var(--text-muted);
    font-weight: 500;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    transition: color 0.3s;
}

.produto-item:hover .price-tag { color: var(--royal); }

/* ════════════════════════════════════════════════
   NARRATIVA (Story)
   ════════════════════════════════════════════════ */

.narrativa {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 0;
}

.narrativa-texto {
    font-family: var(--display);
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    line-height: 1.75;
    color: var(--text);
    font-weight: 400;
}

.narrativa-texto strong { font-weight: 700; color: var(--royal); }

.narrativa-resultado {
    margin-top: 32px;
    padding: 20px 24px;
    background: rgba(228, 74, 74, 0.06);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--error);
    font-weight: 600;
    border-left: 4px solid var(--error);
    line-height: 1.5;
    transition: box-shadow 0.3s;
}

.narrativa-resultado:hover { box-shadow: 0 4px 16px rgba(228, 74, 74, 0.1); }

.narrativa-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--sky), var(--royal));
    margin: 40px auto;
    opacity: 0.5;
    animation: dividerPulse 3s ease-in-out infinite;
}

@keyframes dividerPulse {
    0%, 100% { opacity: 0.3; transform: scaleX(1); }
    50% { opacity: 0.7; transform: scaleX(1.2); }
}

/* ════════════════════════════════════════════════
   STEPS
   ════════════════════════════════════════════════ */

.steps-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.step-item { transition: transform 0.4s; }
.step-item:hover { transform: translateY(-4px); }

.step-number {
    font-family: var(--display);
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(65, 105, 225, 0.12);
    line-height: 1;
    margin-bottom: 12px;
    transition: all 0.4s;
}

.step-item:hover .step-number { color: rgba(65, 105, 225, 0.25); }

.step-item h3 {
    font-family: var(--body);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.step-item p {
    font-size: 0.85rem;
    color: var(--text-soft);
    line-height: 1.6;
}

/* ════════════════════════════════════════════════
   CHATBOT DEMO
   ════════════════════════════════════════════════ */

.chat-section {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 56px;
    align-items: center;
    margin-top: 48px;
}

.chat-phone {
    background: var(--bg);
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(65, 105, 225, 0.10);
    overflow: hidden;
    border: 1px solid var(--border);
    transform: rotate(-2deg);
    transition: transform 0.6s cubic-bezier(.22,1,.36,1), box-shadow 0.6s;
}

.chat-phone:hover {
    transform: rotate(0deg) translateY(-4px);
    box-shadow: 0 20px 60px rgba(65, 105, 225, 0.15);
}

.chat-phone-header {
    background: linear-gradient(135deg, var(--royal), var(--royal-dark));
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-phone-dot {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 0 18px rgba(34, 197, 94, 0.7); }
}

.chat-phone-header span { color: #fff; font-weight: 600; font-size: 0.9rem; }
.chat-phone-body { padding: 18px; }

.chat-msg { display: flex; flex-direction: column; gap: 8px; }

.chat-bot, .chat-user {
    padding: 10px 14px;
    font-size: 0.8rem;
    line-height: 1.5;
    max-width: 88%;
}

.chat-bot {
    background: var(--bg-alt);
    border-radius: 12px 12px 12px 2px;
    align-self: flex-start;
}

.chat-user {
    background: var(--royal);
    color: #fff;
    border-radius: 12px 12px 2px 12px;
    align-self: flex-end;
}

.chat-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 6px;
}

.chat-prod {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 8px;
    text-align: center;
    transition: all 0.2s;
}

.chat-prod:hover { border-color: var(--royal); box-shadow: var(--shadow); transform: scale(1.02); }

.chat-prod-name { font-weight: 700; font-size: 0.76rem; }
.chat-prod-price { font-weight: 800; font-size: 0.78rem; color: var(--royal); }

.chat-features { display: flex; flex-direction: column; gap: 20px; }

.chat-feat {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 24px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(.22,1,.36,1);
}

.chat-feat:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--sky);
    transform: translateX(6px);
}

.chat-feat-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.chat-feat:hover .chat-feat-icon { transform: scale(1.1); }

.chat-feat-icon svg { width: 22px; height: 22px; }

.chat-feat-icon.blue { background: rgba(65, 105, 225, 0.08); color: var(--royal); }
.chat-feat-icon.green { background: rgba(34, 197, 94, 0.1); color: var(--success); }
.chat-feat-icon.sky { background: rgba(135, 206, 235, 0.12); color: var(--royal); }

.chat-feat h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.chat-feat p {
    font-size: 0.82rem;
    color: var(--text-soft);
    line-height: 1.55;
}

/* ════════════════════════════════════════════════
   CALCULADORA
   ════════════════════════════════════════════════ */

.calc-wrap {
    max-width: 780px;
    margin: 48px auto 0;
    background: var(--bg);
    border-radius: 12px;
    padding: 48px 52px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

.calc-wrap:hover { box-shadow: var(--shadow-md); }

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 36px;
}

.calc-label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 10px;
}

.calc-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-family: var(--body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    transition: all 0.2s;
}

.calc-input:focus {
    outline: none;
    border-color: var(--royal);
    box-shadow: 0 0 0 4px rgba(65, 105, 225, 0.08);
    transform: scale(1.02);
}

.calc-hint { color: var(--text-muted); font-size: 0.8rem; margin-top: 8px; }

.calc-slider-wrap { margin-bottom: 36px; }

.calc-slider {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(90deg, rgba(228, 74, 74, 0.15), var(--error));
    border-radius: 4px;
    outline: none;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--error);
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.2s;
}

.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); box-shadow: var(--shadow-md); }

.calc-slider::-moz-range-thumb {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--error);
    cursor: pointer;
}

.calc-slider-val {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.calc-slider-val span:first-child { font-size: 0.82rem; color: var(--text-muted); }
.calc-slider-val span:last-child { font-weight: 800; font-size: 1.4rem; color: var(--error); }

.calc-result {
    background: rgba(228, 74, 74, 0.04);
    border: 1.5px solid rgba(228, 74, 74, 0.12);
    border-radius: var(--radius);
    padding: 36px 40px;
    text-align: center;
    transition: all 0.3s;
}

.calc-result:hover { background: rgba(228, 74, 74, 0.06); }

.calc-result-label {
    color: var(--error);
    font-weight: 700;
    font-size: 0.92rem;
    margin-bottom: 4px;
}

.calc-result-value {
    color: var(--error);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1;
    margin: 8px 0 4px;
    font-family: var(--display);
}

.calc-result-value small { font-size: 1.4rem; }

.calc-result-detail {
    font-size: 0.9rem;
    color: var(--text-soft);
    margin-top: 16px;
    line-height: 1.6;
}

.calc-result-detail .green { color: var(--success); font-weight: 700; }

.btn-calc {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    background: var(--royal);
    color: #fff;
    padding: 16px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

.btn-calc::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-calc:hover::after { transform: translateX(100%); }

.btn-calc:hover {
    background: var(--royal-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-calc .arrow { transition: transform 0.3s; }
.btn-calc:hover .arrow { transform: translateX(4px); }

/* ════════════════════════════════════════════════
   BENEFÍCIOS
   ════════════════════════════════════════════════ */

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

.ben-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 24px 28px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(.22,1,.36,1);
    cursor: default;
}

.ben-item:hover {
    border-color: var(--sky);
    box-shadow: 0 8px 28px rgba(65, 105, 225, 0.08);
    transform: translateX(8px);
}

.ben-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s;
}

.ben-item:hover .ben-icon { transform: rotate(-8deg) scale(1.1); }

.ben-icon svg { width: 24px; height: 24px; transition: all 0.4s; }
.ben-item:hover .ben-icon svg { filter: drop-shadow(0 2px 8px rgba(65, 105, 225, 0.2)); }

.ben-icon.blue { background: rgba(65, 105, 225, 0.08); color: var(--royal); }
.ben-icon.sky { background: rgba(135, 206, 235, 0.12); color: var(--royal); }
.ben-icon.green { background: rgba(34, 197, 94, 0.1); color: var(--success); }
.ben-icon.warm { background: rgba(245, 158, 11, 0.08); color: #B8860B; }
.ben-icon.red { background: rgba(228, 74, 74, 0.08); color: var(--error); }

.ben-item h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.ben-item p {
    font-size: 0.83rem;
    color: var(--text-soft);
    line-height: 1.6;
}

/* ════════════════════════════════════════════════
   WHATSAPP MOCK
   ════════════════════════════════════════════════ */

.wa-section {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 56px;
    align-items: center;
    margin-top: 48px;
}

.wa-info .roi-box {
    background: rgba(34, 197, 94, 0.06);
    border: 1.5px solid rgba(34, 197, 94, 0.15);
    border-radius: var(--radius);
    padding: 32px 36px;
    margin-top: 32px;
    transition: box-shadow 0.3s;
}

.wa-info .roi-box:hover { box-shadow: 0 4px 20px rgba(34, 197, 94, 0.08); }

.roi-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
    font-size: 0.85rem;
    transition: all 0.2s;
}

.roi-row:last-child { border-bottom: none; }
.roi-row .label { color: var(--text); }
.roi-row .value { font-weight: 800; color: var(--success); }

.roi-row.highlight {
    background: rgba(34, 197, 94, 0.06);
    margin: 0 -16px;
    padding: 14px 16px;
    border-radius: 6px;
    border-bottom: none;
}

.roi-row.highlight .label { color: var(--success); font-weight: 700; }
.roi-row.highlight .value { font-size: 1.2rem; }

.wa-phone {
    background: #e5ddd5;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.1);
    transform: rotate(2deg);
    transition: transform 0.6s cubic-bezier(.22,1,.36,1), box-shadow 0.6s;
}

.wa-phone:hover {
    transform: rotate(0deg) translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.wa-header {
    background: #075e54;
    border-radius: 12px 12px 0 0;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-avatar {
    width: 40px; height: 40px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.wa-name { color: #fff; font-weight: 700; font-size: 0.92rem; }
.wa-status { color: rgba(255,255,255,.7); font-size: 0.75rem; }

.wa-body {
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wa-bubble {
    background: #fff;
    border-radius: 0 12px 12px 12px;
    padding: 12px 14px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    max-width: 90%;
    font-size: 0.88rem;
    line-height: 1.55;
}

.wa-bubble .wa-time {
    text-align: right;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.wa-bubble-reply {
    background: #dcf8c6;
    border-radius: 12px 0 12px 12px;
    align-self: flex-end;
}

/* ════════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════════ */

.pricing-wrap {
    max-width: 480px;
    margin: 48px auto 0;
}

.pricing-card {
    background: var(--bg);
    border-radius: 16px;
    padding: 44px 40px;
    box-shadow: var(--shadow-md);
    border: 1.5px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(65, 105, 225, 0.12);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sky), var(--royal), var(--sky));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

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

.pricing-header { text-align: center; margin-bottom: 32px; }

.pricing-badge {
    display: inline-block;
    background: rgba(65, 105, 225, 0.08);
    color: var(--royal);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.pricing-card:hover .pricing-badge {
    background: rgba(65, 105, 225, 0.12);
    transform: scale(1.05);
}

.pricing-name {
    font-family: var(--display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.pricing-desc { font-size: 0.82rem; color: var(--text-soft); }

.pricing-amount {
    text-align: center;
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
}

.pricing-amount .currency {
    font-size: 1.2rem;
    vertical-align: top;
    position: relative;
    top: 8px;
    font-weight: 700;
    color: var(--text);
}

.pricing-amount .number {
    font-family: var(--display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.pricing-amount .period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-amount .daily {
    display: block;
    margin-top: 4px;
    font-size: 0.82rem;
    color: var(--royal);
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--bg-alt);
    transition: all 0.2s;
}

.pricing-features li:hover { padding-left: 6px; }
.pricing-features li:last-child { border-bottom: none; }

.pricing-features .check {
    width: 20px;
    height: 20px;
    background: rgba(65, 105, 225, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all 0.3s;
}

.pricing-features li:hover .check {
    background: rgba(65, 105, 225, 0.15);
    transform: scale(1.1);
}

.pricing-features .check svg {
    width: 12px;
    height: 12px;
    color: var(--royal);
}

.btn-pricing {
    display: block;
    text-align: center;
    padding: 16px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all .25s;
    background: var(--royal);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.btn-pricing::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-pricing:hover::after { transform: translateX(100%); }

.btn-pricing:hover {
    background: var(--royal-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pricing-footer {
    text-align: center;
    margin-top: 16px;
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 14px;
    background: var(--bg-alt);
    border-radius: var(--radius);
}

.pricing-footer strong { color: var(--text); }

/* ════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════ */

.faq-wrap {
    max-width: 680px;
    margin: 48px auto 0;
}

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

.faq-q {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s;
}

.faq-q:hover { color: var(--royal); }

.faq-toggle {
    font-size: 1.4rem;
    color: var(--royal);
    flex-shrink: 0;
    transition: transform 0.3s;
    font-weight: 300;
    line-height: 1;
}

.faq-toggle.open { transform: rotate(135deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s;
    font-size: 0.85rem;
    color: var(--text-soft);
    line-height: 1.7;
    padding: 0;
    opacity: 0;
}

.faq-a.active {
    max-height: 260px;
    padding: 4px 0 20px;
    opacity: 1;
}

/* ════════════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════════════ */

.cta-section {
    background: var(--bg-alt);
    color: var(--text);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(135, 206, 235, 0.08) 0%, transparent 60%);
    animation: ctaBreath 8s ease-in-out infinite;
}

@keyframes ctaBreath {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

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

.cta-section h2 {
    font-family: var(--display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text);
}

.cta-section p {
    font-size: 0.95rem;
    color: var(--text-soft);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.65;
}

.cta-section .btn-hero {
    background: var(--royal);
    color: #fff;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--royal);
    color: #fff;
    padding: 18px 40px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

.btn-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-cta:hover::after { transform: translateX(100%); }

.btn-cta:hover {
    background: var(--royal-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-cta .arrow { transition: transform 0.3s; }
.btn-cta:hover .arrow { transform: translateX(5px); }

.cta-footnote {
    margin-top: 16px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.cta-trust {
    margin-top: 16px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */

.footer {
    background: var(--bg-alt);
    color: var(--text-soft);
    padding: 48px 0 32px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.footer-brand-text span {
    font-size: 18px;
    font-weight: 800;
    color: var(--royal);
}

.footer-tagline { font-size: 0.82rem; margin-top: 4px; color: var(--text-muted); }

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-soft);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--royal);
    transition: width 0.3s;
}

.footer-links a:hover::after { width: 100%; }
.footer-links a:hover { color: var(--royal); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    font-size: 0.8rem;
    text-align: center;
    color: var(--text-muted);
}

.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--royal); }

/* ════════════════════════════════════════════════
   WHATSAPP FLOAT
   ════════════════════════════════════════════════ */

.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 999;
    font-size: 24px;
    animation: waFloatPulse 3s ease-in-out infinite;
}

.wa-float:hover {
    transform: scale(1.12) rotate(-4deg);
    box-shadow: 0 10px 36px rgba(37, 211, 102, 0.45);
    animation: none;
}

@keyframes waFloatPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35); transform: scale(1); }
    50% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55); transform: scale(1.04); }
}

/* ════════════════════════════════════════════════
   BADGE
   ════════════════════════════════════════════════ */

.badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.badge-primary {
    background: rgba(65, 105, 225, 0.08);
    color: var(--royal);
}

/* ════════════════════════════════════════════════
   CARD
   ════════════════════════════════════════════════ */

.card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: box-shadow 0.3s, transform 0.3s;
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* ════════════════════════════════════════════════
   INNER PAGE HERO (for subpages)
   ════════════════════════════════════════════════ */

.page-hero {
    padding-top: 120px;
    padding-bottom: 60px;
    text-align: center;
    background: var(--bg);
}

.page-hero h1 {
    font-family: var(--display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--text-soft);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ════════════════════════════════════════════════
   CONTENT BLOCK (for legal/text pages)
   ════════════════════════════════════════════════ */

.content-block {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 28px;
}

.content-block-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-block p {
    color: var(--text-soft);
    margin-bottom: 12px;
    line-height: 1.7;
}

.content-block ul { list-style: none; padding-left: 0; }

.content-block li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: var(--text-soft);
    line-height: 1.6;
}

.content-block li::before {
    content: "•";
    color: var(--royal);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

/* ════════════════════════════════════════════════
   COMPARISON GRID (sobre page)
   ════════════════════════════════════════════════ */

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.problem-side {
    background: rgba(228, 74, 74, 0.06);
    border-radius: var(--radius-lg);
    padding: 32px;
    border-left: 4px solid var(--error);
}

.solution-side {
    background: rgba(34, 197, 94, 0.06);
    border-radius: var(--radius-lg);
    padding: 32px;
    border-left: 4px solid var(--success);
}

.side-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.side-list { list-style: none; }

.side-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-soft);
}

.side-list li strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
}

/* ─── PRICE HIGHLIGHT ─── */
.price-highlight {
    color: var(--royal);
    font-weight: 700;
    background: rgba(65, 105, 225, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */

@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-content { max-width: 100%; text-align: center; }
    .hero-visual { min-height: 280px; }
    .hero-ring-outer { width: 240px; height: 240px; }
    .hero-ring-mid { width: 180px; height: 180px; }
    .hero-ring-inner { width: 80px; height: 80px; }
    .chat-section { grid-template-columns: 1fr; }
    .chat-phone { max-width: 340px; margin: 0 auto; transform: none; }
    .wa-section { grid-template-columns: 1fr; }
    .wa-phone { max-width: 340px; margin: 0 auto; transform: none; }
    .steps-wrap { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }
    .produtos-grid { grid-template-columns: repeat(2, 1fr); }
    .produto-item { padding: 28px 24px; }
    .pain-grid { gap: 24px; }
    .pain-num { font-size: 2rem; }
    .calc-wrap { padding: 28px 24px; }
    .pricing-card { padding: 32px 28px; }
    .steps-wrap { gap: 20px; }
    .narrativa { padding: 40px 0; }
    .comparison-grid { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
    .produtos-grid { grid-template-columns: 1fr; }
    .steps-wrap { grid-template-columns: 1fr; }
    .calc-grid { grid-template-columns: 1fr; gap: 20px; }
    .pain-grid { grid-template-columns: 1fr; gap: 32px; }
    .pain-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 24px; }
    .pain-item:last-child { border-bottom: none; padding-bottom: 0; }
    .hero { min-height: auto; padding: 100px 0 60px; }
    .hero-visual { min-height: 200px; }
    .hero-ring-outer { width: 180px; height: 180px; }
    .hero-ring-mid { width: 130px; height: 130px; }
    .hero-ring-inner { width: 60px; height: 60px; }
    .footer-inner { flex-direction: column; align-items: center; text-align: center; }
    .footer-links { justify-content: center; }
    .ben-item { grid-template-columns: 1fr; text-align: center; }
    .ben-icon { margin: 0 auto; }

    /* ── PARTÍCULAS E BG-SHAPES: esconder no mobile ── */
    .hero-particles,
    .bg-shapes { display: none !important; }

    /* ── HEADLINE MOBILE ── */
    .hero h1 {
        font-size: clamp(1.25rem, 5.5vw, 1.5rem) !important;
        line-height: 1.2 !important;
    }

    /* ── CTA MOBILE ── */
    .btn-hero {
        padding: 14px 24px;
        max-width: 280px;
    }
}
