/* --- VARIÁVEIS ELITE (Inspiradas na Logo) --- */
:root {
    --color-green: #00A34B;
    --color-green-dark: #007A38;
    --color-green-glow: rgba(0, 163, 75, 0.4);
    
    --color-yellow: #FFD700;
    
    --color-blue: #092147;
    --color-blue-light: #1A3E7A;
    
    --color-red: #E62020;
    --color-red-glow: rgba(230, 32, 32, 0.4);
    
    --bg-base: #030812;
    --bg-surface: #0A1224;
    --bg-glass: rgba(10, 18, 36, 0.6);
    
    --text-pure: #FFFFFF;
    --text-muted: #94A3B8;
    
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
}

/* --- RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

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

/* --- MESH BACKGROUND (Stunning Effect) --- */
.bg-mesh {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: #000;
}

.mesh-blob {
    position: absolute;
    filter: blur(120px);
    opacity: 0.5;
    border-radius: 50%;
    animation: drift 20s infinite alternate ease-in-out;
}

.blob-1 { width: 600px; height: 600px; background: var(--color-blue); top: -20%; left: -10%; }
.blob-2 { width: 500px; height: 500px; background: var(--color-green-dark); bottom: -10%; right: -10%; animation-delay: -5s; }
.blob-3 { width: 400px; height: 400px; background: rgba(255, 215, 0, 0.15); top: 30%; left: 40%; animation-delay: -10s; }

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.2); }
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, .logo span { font-family: var(--font-display); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }

.text-gradient {
    background: linear-gradient(to right, var(--color-green), var(--color-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-danger {
    background: linear-gradient(to right, var(--color-red), #ff7b93);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- LAYOUT UTILS --- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* --- BUTTONS --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 28px; border-radius: 12px;
    font-family: var(--font-sans); font-weight: 600; font-size: 1rem;
    text-decoration: none; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none; outline: none; position: relative; overflow: hidden;
}

.btn:hover { transform: translateY(-3px); }

.btn-primary {
    background: var(--text-pure); color: var(--bg-base);
}

.btn-primary:hover { background: #e0e0e0; }

.btn-glow {
    background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
    color: var(--bg-base); box-shadow: 0 0 25px var(--color-green-glow);
}

.btn-glow:hover { box-shadow: 0 0 40px rgba(0, 255, 135, 0.6); }

.btn-glow-large {
    background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
    color: var(--bg-base); font-size: 1.1rem; padding: 18px 36px; box-shadow: 0 0 30px var(--color-green-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05); color: var(--text-pure);
    border: var(--border-glass); backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); }

.btn-outline { background: transparent; border: 2px solid rgba(255, 255, 255, 0.2); color: var(--text-pure); }
.btn-outline:hover { border-color: var(--text-pure); }

.btn-ghost { background: transparent; color: var(--text-muted); padding: 10px 20px; }
.btn-ghost:hover { color: var(--text-pure); }

.btn-primary-small { background: var(--text-pure); color: var(--bg-base); padding: 10px 20px; border-radius: 8px; font-weight: 600;}
.btn-primary-small:hover { opacity: 0.9; transform: scale(1.05); }

.btn-full { width: 100%; }

/* --- HEADER --- */
.header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 20px 0; transition: all 0.3s ease; border-bottom: 1px solid transparent;
}

.header.scrolled {
    padding: 15px 0; background: rgba(5, 5, 5, 0.8); backdrop-filter: blur(16px);
    border-bottom: var(--border-glass); box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

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

.logo { display: flex; align-items: center; gap: 8px; font-size: 1.5rem; letter-spacing: -1px; font-weight: 900; }
.logo-img { width: 36px; height: 36px; border-radius: 8px; object-fit: contain; }

.nav-links { display: none; gap: 32px; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--text-pure); }

.header-actions { display: none; align-items: center; gap: 10px; }

/* --- HERO --- */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 130px 0 60px; position: relative; overflow: hidden; }
.hero-container { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }

.badge-glow {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px;
    background: rgba(0, 255, 135, 0.1); border: 1px solid rgba(0, 255, 135, 0.3);
    border-radius: 100px; color: var(--color-green); font-size: 0.85rem; font-weight: 600;
    margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px;
}

.pulse-dot { width: 8px; height: 8px; background: var(--color-green); border-radius: 50%; box-shadow: 0 0 10px var(--color-green); animation: pulseDot 1.5s infinite; }
@keyframes pulseDot { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 135, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 255, 135, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 135, 0); } }

.hero-title { font-size: 2.3rem; margin-bottom: 20px; text-transform: uppercase; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 32px; max-width: 550px; }

.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }

.trust-indicators { display: flex; align-items: center; gap: 20px; border-top: var(--border-glass); padding-top: 24px; max-width: 400px; }
.avatars { display: flex; align-items: center; }
.avatars img { width: 44px; height: 44px; border-radius: 50%; border: 3px solid var(--bg-base); margin-left: -16px; }
.avatars img:first-child { margin-left: 0; }
.avatar-more { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-surface); border: 3px solid var(--bg-base); margin-left: -16px; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; z-index: 1; }

.trust-text { display: flex; flex-direction: column; gap: 4px; }
.stars { display: flex; gap: 2px; }
.star-filled { width: 16px; height: 16px; fill: var(--color-yellow); color: var(--color-yellow); }
.trust-text span { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

/* iPhone Mockup CSS - ELITE */
.hero-visual { position: relative; display: flex; justify-content: center; perspective: 1000px; padding: 20px 0; }
.iphone-mockup {
    width: 280px; height: 580px; background: #000; border-radius: 40px;
    border: 6px solid #222; box-shadow: 0 30px 60px rgba(0,0,0,0.8), inset 0 0 10px rgba(255,255,255,0.1);
    position: relative; z-index: 2; transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}
.iphone-mockup:hover { transform: rotateY(0deg) rotateX(0deg); }
.iphone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 120px; height: 25px; background: #222; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; z-index: 10; }

.app-ui {
    width: 100%; height: 100%; background: #F8FAFC; border-radius: 40px;
    overflow: hidden; display: flex; flex-direction: column;
    color: #0F172A; position: relative;
}

/* Real App Header */
.real-app-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 50px 20px 20px; background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.app-user-info { display: flex; align-items: center; gap: 12px; }
.app-user-info img { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--color-blue); }
.greeting { display: block; font-size: 0.75rem; color: #64748B; }
.username { display: block; font-size: 1.1rem; color: #0F172A; }
.app-actions i { color: #0F172A; width: 24px; }

/* Real App Progress */
.real-app-progress {
    background: var(--color-blue); margin: 20px; border-radius: 20px;
    padding: 24px; display: flex; justify-content: space-between; align-items: center;
    color: #FFFFFF; box-shadow: 0 10px 20px rgba(9, 33, 71, 0.2);
}
.progress-info span { font-size: 0.8rem; opacity: 0.8; }
.progress-info h2 { font-size: 2.5rem; margin: 4px 0; }
.progress-info p { font-size: 0.8rem; opacity: 0.8; }

.progress-ring-large { width: 80px; height: 80px; }
.circular-chart-app { display: block; width: 100%; }
.circle-bg-app { fill: none; stroke: rgba(255,255,255,0.2); stroke-width: 3.8; }
.circle-app { fill: none; stroke-width: 3.8; stroke-linecap: round; stroke: var(--color-green); animation: progress 2s ease-out forwards; }

/* Real App Stats */
.real-app-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
    padding: 0 20px; margin-bottom: 20px;
}
.stat-card {
    background: #FFFFFF; padding: 16px 8px; border-radius: 16px;
    text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.stat-card.have i { color: var(--color-green); }
.stat-card.missing i { color: var(--color-red); }
.stat-card.duplicates i { color: var(--color-yellow); }
.stat-card .val { font-size: 1.2rem; font-weight: 800; line-height: 1; }
.stat-card .lbl { font-size: 0.7rem; color: #64748B; font-weight: 600; text-transform: uppercase; }

/* Real App Button */
.real-app-btn {
    margin: 0 20px auto; background: var(--color-green); color: #FFF;
    border: none; padding: 16px; border-radius: 16px; font-size: 1rem;
    font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 8px;
    box-shadow: 0 8px 20px var(--color-green-glow); cursor: pointer;
}

/* Real App Nav */
.real-app-nav {
    display: flex; justify-content: space-between; align-items: center;
    background: #FFFFFF; padding: 15px 24px 25px;
    border-top: 1px solid #E2E8F0;
}
.nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #94A3B8; }
.nav-item.active { color: var(--color-blue); }
.nav-item i { width: 22px; height: 22px; }
.nav-item span { font-size: 0.65rem; font-weight: 600; }

/* Float Badges */
.float-badge { position: absolute; background: var(--bg-glass); backdrop-filter: blur(12px); border: var(--border-glass); padding: 8px 16px; border-radius: 100px; display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.8rem; z-index: 5; box-shadow: 0 15px 35px rgba(0,0,0,0.5); }
.float-badge.float-1 { top: 10%; right: -10px; animation: float 6s ease-in-out infinite; color: var(--color-green); }
.float-badge.float-2 { bottom: 5%; left: -20px; animation: float 8s ease-in-out infinite reverse; }
.float-badge img { width: 28px; height: 28px; border-radius: 50%; }
.float-badge i { width: 20px; }

@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }
@keyframes pulseScale { 0% { transform: scale(1); opacity: 0.7; } 50% { transform: scale(1.2); opacity: 1; } 100% { transform: scale(1); opacity: 0.7; } }

/* --- TRUSTED BY LOGOS --- */
.trusted-by { padding: 40px 0; border-top: var(--border-glass); border-bottom: var(--border-glass); background: rgba(0,0,0,0.3); text-align: center; }
.trusted-by p { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 2px; margin-bottom: 24px; font-weight: 600; }
.logos-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; opacity: 0.5; filter: grayscale(100%); }
.logo-item span { font-size: 1.2rem; font-family: var(--font-display); font-weight: 800; letter-spacing: -0.5px; }

/* --- SECTION SYSTEM --- */
section { padding: 60px 0; }
.section-title { text-align: center; margin-bottom: 40px; max-width: 800px; margin-left: auto; margin-right: auto; }
.subtitle-badge { display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; color: #60A5FA; text-transform: uppercase; margin-bottom: 16px; background: rgba(96, 165, 250, 0.1); padding: 6px 14px; border-radius: 100px; border: 1px solid rgba(96, 165, 250, 0.3); }
.subtitle-badge.success { color: var(--color-green); background: rgba(0, 255, 135, 0.1); border-color: rgba(0, 255, 135, 0.3); }
.section-title h2 { font-size: 2rem; margin-bottom: 16px; text-transform: uppercase; }
.section-title p { font-size: 1.1rem; color: var(--text-muted); }

/* --- PROBLEM --- */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.glass-card { background: var(--bg-glass); border: var(--border-glass); border-radius: 24px; padding: 40px; backdrop-filter: blur(10px); transition: all 0.4s ease; position: relative; overflow: hidden; }
.danger-hover:hover { border-color: rgba(255, 51, 102, 0.4); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(255, 51, 102, 0.05); }
.danger-hover::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--color-red); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.danger-hover:hover::before { transform: scaleX(1); }

.card-icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(255, 51, 102, 0.1); color: var(--color-red); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.card-icon i { width: 28px; height: 28px; }
.glass-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.glass-card p { color: var(--text-muted); }

/* --- SOLUTION BENTO GRID --- */
.solution-grid { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; }
.solution-text h2 { font-size: 2.5rem; text-transform: uppercase; margin-bottom: 20px; }
.solution-text .lead { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 40px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.feature-card { display: flex; gap: 20px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05); padding: 24px; border-radius: 20px; align-items: flex-start; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.feature-card:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(0, 255, 135, 0.3); transform: translateX(10px); box-shadow: 0 10px 30px rgba(0, 255, 135, 0.05); }
.feature-card .text { display: flex; flex-direction: column; }
.icon-box { width: 56px; height: 56px; flex-shrink: 0; background: linear-gradient(135deg, rgba(0, 255, 135, 0.1), rgba(0, 81, 255, 0.1)); border: 1px solid rgba(0, 255, 135, 0.2); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--color-green); }
.feature-list strong { display: block; font-size: 1.2rem; margin-bottom: 8px; font-family: var(--font-display); letter-spacing: -0.5px; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

.solution-visual { position: relative; }
.glow-backdrop { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; background: radial-gradient(circle, rgba(0, 81, 255, 0.15) 0%, transparent 60%); filter: blur(50px); z-index: 0; pointer-events: none; }
.bento-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; position: relative; z-index: 1; }
.bento-box { background: rgba(10, 18, 36, 0.7); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px; padding: 24px; box-shadow: 0 15px 35px rgba(0,0,0,0.4); backdrop-filter: blur(16px); display: flex; flex-direction: column; justify-content: center; transition: all 0.4s ease; }
.bento-box:hover { transform: translateY(-5px); border-color: rgba(255, 255, 255, 0.2); box-shadow: 0 20px 40px rgba(0,0,0,0.6); }
.bento-large { grid-column: 1 / -1; align-items: center; background: linear-gradient(145deg, rgba(20, 30, 50, 0.8), rgba(5, 10, 20, 0.9)); padding: 32px; border: 1px solid rgba(0, 255, 135, 0.15); }
.bento-small { text-align: center; align-items: center; gap: 16px; padding: 28px 16px; }
.bg-green { background: linear-gradient(135deg, rgba(0, 255, 135, 0.1), rgba(0, 163, 75, 0.05)); border-color: rgba(0, 255, 135, 0.2); color: var(--color-green); }
.bento-wide { grid-column: 1 / -1; padding: 20px 24px; }

.bento-header { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; margin-bottom: 20px; width: 100%; text-align: center; }
.chart-circle { position: relative; width: 120px; height: 120px; }
.percent { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 1.5rem; font-weight: 800; font-family: var(--font-display); }
.circular-chart { display: block; max-height: 250px; }
.circle-bg { fill: none; stroke: rgba(255,255,255,0.05); stroke-width: 3.8; }
.circle { fill: none; stroke-width: 2.8; stroke-linecap: round; stroke: var(--color-green); animation: progress 2s ease-out forwards; }
@keyframes progress { 0% { stroke-dasharray: 0, 100; } }

.btn-micro { background: rgba(255,255,255,0.1); padding: 6px 12px; border-radius: 6px; font-size: 0.75rem; font-weight: 600; cursor: pointer; }
.btn-micro.primary { background: var(--color-green); color: #000; }
.bento-small i { width: 32px; height: 32px; }
.bento-small span { font-weight: 600; font-size: 0.9rem; }

.mini-user-row { display: flex; align-items: center; gap: 12px; width: 100%; }
.mini-user-row img { width: 40px; height: 40px; border-radius: 50%; }
.mini-user-row .info { flex-grow: 1; }
.mini-user-row strong { display: block; font-size: 0.9rem; }
.mini-user-row span { font-size: 0.75rem; color: var(--color-green); }

/* --- SAVINGS / ECONOMIA --- */
.savings-info.table-layout { flex-direction: column; align-items: flex-start; padding: 40px; background: var(--bg-surface); border-radius: 24px; border: var(--border-glass); margin-top: 40px; }
.savings-info.table-layout .info-header { display: flex; gap: 20px; align-items: center; margin-bottom: 24px; }
.savings-info.table-layout .info-text p { font-size: 1.1rem; max-width: 800px; color: var(--text-muted); }
.savings-info.table-layout .info-text strong { font-size: 1.8rem; margin-bottom: 8px; display: block; font-family: var(--font-display); letter-spacing: -0.5px; }
.savings-info.table-layout .info-action { margin-top: 40px; width: 100%; text-align: center; }

.savings-grid { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 40px; }
.danger-card { border-color: rgba(230, 32, 32, 0.2); background: linear-gradient(180deg, rgba(20, 5, 5, 0.8), rgba(230, 32, 32, 0.05)); }
.danger-card .card-header-icon { color: var(--color-red); background: rgba(230, 32, 32, 0.1); width: 64px; height: 64px; border-radius: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; box-shadow: 0 10px 20px rgba(230, 32, 32, 0.1); }
.danger-card .card-header-icon i { width: 32px; height: 32px; }
.success-card { border-color: rgba(0, 163, 75, 0.3); background: linear-gradient(180deg, rgba(5, 20, 10, 0.8), rgba(0, 163, 75, 0.08)); position: relative; overflow: hidden; }
.success-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at top right, rgba(0, 255, 135, 0.15), transparent 60%); pointer-events: none; }
.success-card .card-header-icon { color: var(--color-green); background: rgba(0, 163, 75, 0.15); width: 64px; height: 64px; border-radius: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; box-shadow: 0 10px 20px var(--color-green-glow); }
.success-card .card-header-icon i { width: 32px; height: 32px; }

.savings-list { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 16px; }
.savings-list li { display: flex; gap: 12px; align-items: center; font-size: 1.05rem; }
.danger-card .savings-list i { color: var(--color-red); width: 24px; height: 24px; flex-shrink: 0; }
.success-card .savings-list i { color: var(--color-green); width: 24px; height: 24px; flex-shrink: 0; }

.cost-visual { border-top: var(--border-glass); padding-top: 32px; margin-top: auto; }
.cost-label { display: block; font-size: 0.95rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; font-weight: 700; }
.cost-value { font-size: 3rem; font-family: var(--font-display); font-weight: 900; margin-bottom: 16px; line-height: 1; letter-spacing: -1px; font-variant-numeric: tabular-nums; }
.cost-huge { font-size: 4.5rem; text-shadow: 0 10px 30px rgba(0, 255, 135, 0.3); }
.cost-bar { height: 10px; border-radius: 5px; width: 100%; background: rgba(255,255,255,0.05); position: relative; overflow: hidden; margin-bottom: 12px; }
.danger-bar::after { content: ''; position: absolute; top: 0; left: 0; height: 100%; width: 95%; background: var(--color-red); border-radius: 5px; box-shadow: 0 0 15px rgba(230, 32, 32, 0.6); }
.success-bar::after { content: ''; position: absolute; top: 0; left: 0; height: 100%; width: 100%; background: var(--color-green); border-radius: 5px; box-shadow: 0 0 20px var(--color-green-glow); animation: fillBar 2s cubic-bezier(0.1, 0.8, 0.2, 1) forwards; transform-origin: left; }
.cost-subtext { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.text-green-glow { color: var(--color-green); font-weight: 600; text-shadow: 0 0 10px var(--color-green-glow); }

@keyframes fillBar { 0% { transform: scaleX(0); } 100% { transform: scaleX(1); } }

.savings-info { background: var(--bg-surface); border: var(--border-glass); border-radius: 24px; padding: 32px; display: flex; flex-direction: column; gap: 24px; align-items: center; text-align: center; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.info-icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(255, 215, 0, 0.1); color: var(--color-yellow); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon i { width: 28px; height: 28px; }
.info-text strong { display: block; font-size: 1.2rem; margin-bottom: 8px; font-family: var(--font-display); }
.info-text p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.info-action { flex-shrink: 0; width: 100%; }

@media (min-width: 768px) {
    .savings-grid { grid-template-columns: 1fr 1fr; }
    .savings-info { flex-direction: row; text-align: left; padding: 32px 40px; }
    .info-action { width: auto; }
}

/* --- MASONRY TESTIMONIALS --- */
.masonry-testimonials { display: grid; grid-template-columns: 1fr; gap: 24px; }
.review-card { background: var(--bg-glass); border: var(--border-glass); border-radius: 20px; padding: 32px; backdrop-filter: blur(10px); }
.highlight-review { background: linear-gradient(180deg, rgba(20, 20, 25, 0.8), rgba(0, 255, 135, 0.05)); border-color: rgba(0, 255, 135, 0.2); }
.review-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.review-header img { width: 48px; height: 48px; border-radius: 50%; }
.review-header strong { display: block; font-family: var(--font-display); font-size: 1.1rem; }
.review-header span { font-size: 0.8rem; color: var(--text-muted); }
.social-icon { margin-left: auto; color: #1DA1F2; width: 20px; height: 20px; }
.review-card p { font-size: 1.05rem; line-height: 1.6; }
.highlight-review .stars { margin-bottom: 16px; }

/* --- PRICING --- */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 32px; max-width: 900px; margin: 0 auto; }
.price-box { background: var(--bg-glass); border: var(--border-glass); border-radius: 24px; padding: 40px; position: relative; }
.price-box.premium { background: linear-gradient(180deg, #111 0%, #050505 100%); border: 2px solid var(--color-green); box-shadow: 0 30px 60px rgba(0, 255, 135, 0.1); transform: scale(1); }

.popular-tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--color-green); color: var(--bg-base); font-size: 0.8rem; font-weight: 800; padding: 6px 16px; border-radius: 100px; letter-spacing: 1px; }

.price-header { text-align: center; margin-bottom: 32px; padding-bottom: 32px; border-bottom: var(--border-glass); }
.price-header h3 { font-size: 1.5rem; color: var(--text-muted); margin-bottom: 16px; }
.premium .price-header h3 { color: var(--color-green); }
.price { display: flex; align-items: baseline; justify-content: center; gap: 6px; font-size: 4rem; font-family: var(--font-display); font-weight: 900; line-height: 1; margin-bottom: 8px; letter-spacing: -2px; }
.price .currency { font-size: 2rem; color: var(--text-muted); font-weight: 700; letter-spacing: 0; }
.price .period { font-size: 1.2rem; color: var(--text-muted); font-weight: 500; font-family: var(--font-sans); letter-spacing: 0; }
.price-header p { color: var(--text-muted); font-size: 0.95rem; }

.price-display {
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.price-display.animating {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
}

.save-badge {
    background: rgba(0, 255, 135, 0.15);
    color: var(--color-green);
    border: 1px solid rgba(0, 255, 135, 0.3);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.price-total {
    font-size: 0.85rem !important;
    color: var(--text-muted) !important;
    margin-top: 0px;
    margin-bottom: 15px !important;
    height: 20px;
}

.price-toggle { display: inline-flex; background: rgba(255,255,255,0.05); border-radius: 100px; padding: 4px; margin-bottom: 24px; }
.price-toggle span { padding: 8px 16px; border-radius: 100px; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: 0.3s; }
.price-toggle span.active { background: var(--text-pure); color: var(--bg-base); }

.price-features { list-style: none; margin-bottom: 40px; }
.price-features li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 1rem; align-items: center; }
.price-features i { width: 20px; height: 20px; flex-shrink: 0; }
.price-box:not(.premium) .price-features i { color: var(--text-pure); }
.premium .price-features i { color: var(--color-green); }
.disabled { opacity: 0.4; }

.guarantee { text-align: center; font-size: 0.85rem; color: var(--text-muted); margin-top: 20px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.guarantee i { width: 16px; }

/* --- FINAL CTA --- */
.final-cta { padding-bottom: 80px; }
.cta-card { background: linear-gradient(135deg, rgba(0, 81, 255, 0.2), rgba(0, 255, 135, 0.1)); border: var(--border-glass); border-radius: 24px; padding: 50px 24px; text-align: center; position: relative; overflow: hidden; }
.cta-bg-fx { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiLz4KPC9zdmc+') repeat; z-index: 0; }
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { font-size: 2.2rem; margin-bottom: 24px; text-transform: uppercase; }
.cta-card p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.subtext { font-size: 0.85rem; color: var(--text-muted); }

/* --- FOOTER --- */
.footer { border-top: var(--border-glass); padding: 80px 0 40px; background: #000; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 48px; margin-bottom: 60px; }
.brand p { color: var(--text-muted); margin-top: 16px; font-size: 0.95rem; max-width: 300px; }
.footer-links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.footer-links-grid h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 20px; }
.footer-links-grid a { display: block; color: var(--text-muted); text-decoration: none; margin-bottom: 12px; transition: 0.2s; }
.footer-links-grid a:hover { color: var(--text-pure); }
.footer-bottom { display: flex; flex-direction: column; gap: 20px; align-items: center; text-align: center; border-top: var(--border-glass); padding-top: 40px; color: var(--text-muted); font-size: 0.85rem; }
.socials { display: flex; gap: 16px; }
.socials i { width: 20px; cursor: pointer; transition: 0.2s; }
.socials i:hover { color: var(--text-pure); }

/* --- ANIMATIONS & REVEAL --- */
.reveal { opacity: 0; transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0) translateX(0); }
.fade-up { transform: translateY(50px); }
.fade-left { transform: translateX(50px); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* --- RESPONSIVE ELITE --- */
@media (min-width: 768px) {
    section { padding: 120px 0; }
    .section-title { margin-bottom: 60px; }
    .section-title h2 { font-size: 2.8rem; }
    .hero { padding: 160px 0 80px; }
    .hero-title { font-size: 4rem; }
    .hero-container { grid-template-columns: 1.2fr 0.8fr; gap: 60px; }
    .iphone-mockup { width: 320px; height: 650px; border-radius: 50px; border-width: 8px; }
    .iphone-notch { width: 140px; height: 30px; }
    .float-badge { padding: 12px 20px; font-size: 0.9rem; gap: 12px; }
    .float-badge.float-1 { right: -50px; top: 20%; }
    .float-badge.float-2 { left: -60px; bottom: 15%; }
    .price { font-size: 5.5rem; }
    .final-cta { padding-bottom: 120px; }
    .cta-card { padding: 80px 40px; border-radius: 32px; }
    .cta-card h2 { font-size: 3rem; }
    .header-actions, .nav-links { display: flex; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .solution-grid { grid-template-columns: 1fr 1fr; }
    .masonry-testimonials { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 2fr; }
    .footer-links-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
    .price-box.premium { transform: scale(1.05); }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 4.5rem; }
    .masonry-testimonials { grid-template-columns: repeat(3, 1fr); }
}

/* --- INNER PAGES BASE --- */
.page-header { padding: 180px 0 80px; text-align: center; position: relative; border-bottom: var(--border-glass); background: rgba(5, 10, 20, 0.5); }
.page-header h1 { font-size: 3.5rem; text-transform: uppercase; margin-bottom: 24px; }
.page-header p { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.page-content { padding: 80px 0; min-height: 50vh; }
.page-content p { margin-bottom: 20px; font-size: 1.05rem; line-height: 1.7; color: var(--text-muted); }
.page-content h2, .page-content h3 { margin: 40px 0 20px; font-family: var(--font-display); }

/* --- EVENTOS PAGE --- */
.events-search { max-width: 600px; margin: 0 auto 60px; position: relative; }
.events-search input { width: 100%; padding: 20px 24px 20px 60px; border-radius: 100px; background: var(--bg-glass); border: 2px solid rgba(255,255,255,0.1); color: #fff; font-size: 1.1rem; outline: none; transition: 0.3s; font-family: var(--font-sans); }
.events-search input:focus { border-color: var(--color-green); box-shadow: 0 0 20px var(--color-green-glow); }
.events-search i { position: absolute; left: 24px; top: 50%; transform: translateY(-50%); color: var(--text-muted); width: 24px; height: 24px; }
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
.event-card { background: var(--bg-glass); border: var(--border-glass); border-radius: 20px; padding: 32px; backdrop-filter: blur(10px); transition: 0.3s; }
.event-card:hover { transform: translateY(-5px); border-color: var(--color-green); box-shadow: 0 10px 30px var(--color-green-glow); }
.event-city { display: inline-block; background: rgba(0, 255, 135, 0.1); color: var(--color-green); padding: 6px 12px; border-radius: 100px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; margin-bottom: 16px; }
.event-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.event-info { display: flex; align-items: center; gap: 10px; color: var(--text-muted); margin-bottom: 12px; font-size: 0.95rem; }
.event-info i { width: 18px; height: 18px; color: var(--color-yellow); }
.event-card .btn { margin-top: 20px; width: 100%; }
.no-events { text-align: center; grid-column: 1 / -1; padding: 40px; color: var(--text-muted); font-size: 1.2rem; }

/* --- FAQ / CENTRAL AJUDA --- */
.faq-item { background: var(--bg-glass); border: var(--border-glass); border-radius: 16px; margin-bottom: 16px; overflow: hidden; }
.faq-question { padding: 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; font-size: 1.1rem; }
.faq-answer { padding: 0 24px 24px; color: var(--text-muted); display: none; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question { color: var(--color-green); }

/* --- SIMULATION TABLE --- */
.sim-grid-table { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; width: 100%; }
.sg-row { display: grid; grid-template-columns: 160px 140px 1fr; gap: 20px; align-items: center; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 20px 24px; border-radius: 16px; transition: 0.3s ease; }
.sg-row:hover { background: rgba(255,255,255,0.04); transform: translateX(5px); }
.sg-col-group { font-weight: 600; color: #fff; display: flex; align-items: center; gap: 10px; font-size: 1.05rem; }
.sg-col-group i { width: 20px; height: 20px; color: var(--text-muted); }
.sg-col-cost { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--color-red); }
.sg-col-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.5; }

.sg-row.elite { background: linear-gradient(90deg, rgba(0, 255, 135, 0.1), rgba(0, 81, 255, 0.05)); border: 1px solid rgba(0, 255, 135, 0.3); box-shadow: 0 10px 30px rgba(0, 255, 135, 0.05); position: relative; overflow: hidden; transform: scale(1.02); }
.sg-row.elite:hover { transform: scale(1.02) translateX(5px); border-color: rgba(0, 255, 135, 0.5); }
.sg-row.elite .sg-col-group { color: var(--color-green); }
.sg-row.elite .sg-col-group i { color: var(--color-green); }
.sg-row.elite .sg-col-cost { color: var(--color-green); text-shadow: 0 0 15px rgba(0,255,135,0.4); font-size: 1.5rem; }
.sg-row.elite .sg-col-desc { color: #f8fafc; font-weight: 500; }

@media (max-width: 768px) {
    .savings-info.table-layout { padding: 24px 20px; }
    .savings-info.table-layout .info-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .savings-info.table-layout .info-text strong { font-size: 1.4rem; }
    .savings-info.table-layout .info-icon { width: 48px; height: 48px; }
    
    .sg-row { grid-template-columns: 1fr; gap: 4px; padding: 16px; text-align: center; }
    .sg-col-group { justify-content: center; margin-bottom: 8px; }
    .sg-col-cost { font-size: 1.6rem; margin-bottom: 8px; }
    .sg-col-desc { font-size: 0.85rem; }
}
