/* ===========================
   VARIÁVEIS E RESET
   =========================== */
:root {
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --primary-light: #3385FF;
    --secondary: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;
    --success: #10B981;
    --bg: #FFFFFF;
    --bg-gray: #F9FAFB;
    --bg-dark: #111827;
    --text: #1F2937;
    --text-light: #6B7280;
    --text-muted: #9CA3AF;
    --border: #E5E7EB;
    --gradient-primary: linear-gradient(135deg, #0066FF 0%, #3385FF 100%);
    --gradient-success: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(0, 102, 255, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ===========================
   TIPOGRAFIA
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    background: linear-gradient(180deg, transparent 60%, #FEF3C7 60%);
    padding: 0 4px;
    font-weight: 600;
}

.section-badge {
    display: inline-block;
    background: var(--bg-gray);
    color: var(--text);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

/* ===========================
   BARRA DE URGÊNCIA
   =========================== */
.urgency-bar {
    background: linear-gradient(90deg, #DC2626 0%, #EF4444 100%);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

/* ===========================
   HEADER
   =========================== */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 999;
    padding: 16px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
}

.logo-icon {
    font-size: 32px;
}

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

.nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

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

.header-cta {
    display: flex;
    gap: 12px;
}

.menu-mobile {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding: 8px;
}

/* ===========================
   BOTÕES
   =========================== */
.btn-primary,
.btn-secondary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-primary:active {
    transform: translateY(0);
}

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

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

.btn-ghost {
    background: transparent;
    color: var(--text);
}

.btn-ghost:hover {
    background: var(--bg-gray);
}

.btn-large {
    padding: 16px 32px;
    font-size: 17px;
}

.btn-huge {
    padding: 20px 48px;
    font-size: 20px;
    font-weight: 700;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

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

.btn-pulse {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.btn-glow {
    box-shadow: var(--shadow-glow);
}

.btn-arrow {
    font-size: 20px;
    transition: var(--transition);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

/* ===========================
   HERO
   =========================== */
.hero {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-gray) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

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

.badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}

.badge-icon {
    font-size: 16px;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.hero-proof {
    display: flex;
    gap: 32px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.proof-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.proof-icon {
    font-size: 32px;
}

.proof-text {
    display: flex;
    flex-direction: column;
}

.proof-text strong {
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
}

.proof-text span {
    font-size: 13px;
    color: var(--text-light);
}

.hero-trust {
    text-align: center;
}

.trust-text {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===========================
   HERO MOCKUP
   =========================== */
.hero-visual {
    position: relative;
}

.hero-mockup {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

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

.mockup-window {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border);
}

.mockup-header {
    background: var(--bg-gray);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #EF4444; }
.dot.yellow { background: #F59E0B; }
.dot.green { background: #10B981; }

.mockup-url {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    background: white;
    padding: 6px 12px;
    border-radius: 6px;
}

.mockup-body {
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 400px;
}

.mockup-sidebar {
    background: var(--bg-gray);
    padding: 16px;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-version {
    padding: 12px;
    background: white;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.mockup-version:hover {
    transform: translateX(4px);
}

.mockup-version.active {
    background: var(--primary);
    color: white;
}

.version-badge {
    background: var(--success);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
}

.version-date {
    color: var(--text-muted);
    font-size: 11px;
}

.mockup-version.active .version-date {
    color: rgba(255, 255, 255, 0.8);
}

.mockup-canvas {
    padding: 20px;
    position: relative;
}

.mockup-image {
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    position: relative;
    margin-bottom: 16px;
}

.image-placeholder {
    font-size: 80px;
}

.comment-pin {
    position: absolute;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    animation: pinPulse 2s infinite;
}

@keyframes pinPulse {
    0%, 100% { transform: scale(1); box-shadow: var(--shadow-md); }
    50% { transform: scale(1.1); box-shadow: var(--shadow-lg); }
}

.mockup-comment {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--bg-gray);
    border-radius: var(--radius-md);
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.comment-bubble {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.comment-bubble strong {
    color: var(--text);
}

/* ===========================
   ELEMENTOS FLUTUANTES
   =========================== */
.float-element {
    position: absolute;
    animation: floatSide 4s ease-in-out infinite;
}

@keyframes floatSide {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-10px) translateX(5px); }
}

.notification-card {
    background: white;
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    border: 1px solid var(--border);
}

.notif-icon {
    font-size: 24px;
}

.stat-card-mini {
    background: var(--success);
    color: white;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.stat-mini-value {
    display: block;
    font-size: 32px;
    font-weight: 900;
}

.stat-mini-label {
    display: block;
    font-size: 12px;
    opacity: 0.9;
}

/* ===========================
   LOGOS (Social Proof)
   =========================== */
.logos-section {
    padding: 60px 0;
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.logos-title {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.logo-item {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
}

/* ===========================
   PROBLEMA
   =========================== */
.problem-section {
    padding: 100px 0;
    background: white;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.problem-card {
    background: var(--bg-gray);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--danger);
    transform: scaleX(0);
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--danger);
}

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

.problem-emoji {
    font-size: 64px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text);
}

.problem-desc {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.problem-impact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #FEE2E2;
    padding: 16px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.impact-icon {
    font-size: 32px;
}

.problem-impact strong {
    display: block;
    color: var(--danger);
    font-size: 18px;
}

.problem-impact span {
    display: block;
    font-size: 13px;
    color: #991B1B;
}

.problem-list {
    list-style: none;
    text-align: left;
}

.problem-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-light);
}

.problem-cta {
    text-align: center;
}

.cta-box-danger {
    background: white;
    border: 3px solid var(--danger);
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.cta-box-danger h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--danger);
}

.cta-box-danger p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* ===========================
   SOLUÇÃO
   =========================== */
.solution-section {
    padding: 100px 0;
    background: var(--bg-gray);
}

.steps-container {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 64px;
    overflow-x: auto;
    padding: 20px 0;
}

.step-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    min-width: 280px;
    flex: 1;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 32px;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    box-shadow: var(--shadow-md);
}

.step-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-visual {
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    padding: 20px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-upload {
    text-align: center;
}

.upload-anim {
    font-size: 48px;
    display: block;
    margin-bottom: 8px;
    animation: bounce 1s infinite;
}

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

.upload-text {
    font-size: 13px;
    color: var(--text-muted);
}

.visual-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-family: monospace;
    font-size: 12px;
    border: 2px dashed var(--primary);
}

.copy-btn {
    padding: 6px 12px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.visual-comment {
    position: relative;
}

.comment-demo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pin-demo {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.bubble-demo {
    background: white;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    font-size: 13px;
}

.visual-approve {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.approve-btn-demo {
    background: var(--success);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.approved-badge {
    background: #D1FAE5;
    color: #065F46;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
}

.step-arrow {
    font-size: 32px;
    color: var(--primary);
    flex-shrink: 0;
}

.result-box {
    background: white;
    border: 3px solid var(--success);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.result-content h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--success);
}

.result-list {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto 32px;
}

.result-list li {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
}

.result-list li:last-child {
    border-bottom: none;
}

/* ===========================
   VÍDEO
   =========================== */
.video-section {
    padding: 100px 0;
    background: white;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto 32px;
}

.video-placeholder {
    background: var(--bg-gray);
    border-radius: var(--radius-xl);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--border);
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(16, 185, 129, 0.1));
    opacity: 0;
    transition: var(--transition);
}

.video-placeholder:hover::before {
    opacity: 1;
}

.video-placeholder:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.video-placeholder p {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    z-index: 1;
}

.video-duration {
    font-size: 14px;
    color: var(--text-muted);
    z-index: 1;
}

.video-cta {
    text-align: center;
}

.video-cta p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* ===========================
   BENEFÍCIOS/COMPARAÇÃO
   =========================== */
.benefits-section {
    padding: 100px 0;
    background: var(--bg-gray);
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    margin-bottom: 64px;
    align-items: start;
}

.comparison-column {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.comparison-column h3 {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.comparison-column.before {
    border: 2px solid var(--danger);
}

.comparison-column.after {
    border: 2px solid var(--success);
}

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

.comparison-list li {
    padding: 16px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
    line-height: 1.6;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-arrow {
    display: flex;
    align-items: center;
    font-size: 48px;
    color: var(--primary);
    font-weight: 700;
}

.benefit-highlight {
    max-width: 900px;
    margin: 0 auto;
}

.highlight-card {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-radius: var(--radius-xl);
    padding: 40px;
    display: flex;
    gap: 24px;
    align-items: start;
    box-shadow: var(--shadow-lg);
}

.highlight-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.highlight-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #92400E;
}

.highlight-content p {
    font-size: 16px;
    color: #78350F;
    line-height: 1.6;
}

/* ===========================
   DEPOIMENTOS
   =========================== */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.testimonial-card {
    background: var(--bg-gray);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 2px solid var(--border);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.testimonial-card.featured {
    grid-column: span 3;
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border-color: var(--primary);
}

.testimonial-header {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-author span {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.stars {
    font-size: 14px;
    color: #F59E0B;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 16px;
}

.result-badge {
    display: inline-block;
    background: var(--success);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.testimonials-cta {
    text-align: center;
}

.testimonials-cta p {
    margin-bottom: 24px;
    color: var(--text-light);
}

/* ===========================
   GARANTIA
   =========================== */
.guarantee-section {
    padding: 80px 0;
    background: var(--bg-gray);
}

.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border: 3px solid var(--success);
    border-radius: var(--radius-xl);
    padding: 64px 48px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.guarantee-badge {
    font-size: 64px;
    margin-bottom: 24px;
}

.guarantee-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--success);
}

.guarantee-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 32px;
}

.guarantee-reasons {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.reason-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text);
}

.reason-icon {
    font-size: 20px;
}

/* ===========================
   PREÇOS
   =========================== */
.pricing-section {
    padding: 100px 0;
    background: white;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 64px;
    background: var(--bg-gray);
    padding: 6px;
    border-radius: var(--radius-lg);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.toggle-btn {
    flex: 1;
    padding: 12px 24px;
    border: none;
    background: transparent;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.toggle-btn.active {
    background: white;
    box-shadow: var(--shadow-sm);
}

.toggle-discount {
    display: block;
    font-size: 11px;
    color: var(--success);
    font-weight: 700;
}

.pricing-grid {
    max-width: 600px;
    margin: 0 auto 64px;
}

.pricing-card {
    background: white;
    border: 3px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: var(--transition);
}

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.02);
}

.pricing-card.hidden {
    display: none;
}

.pricing-badge-top {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-md);
}

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

.pricing-header h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.pricing-desc {
    color: var(--text-light);
    font-size: 15px;
}

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

.price-old {
    margin-bottom: 8px;
}

.price-old span {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 18px;
}

.price-current {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
}

.value {
    font-size: 72px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.period {
    font-size: 20px;
    color: var(--text-light);
}

.price-note {
    font-size: 14px;
    color: var(--success);
    font-weight: 600;
}

.price-save {
    font-size: 16px;
    color: var(--success);
    font-weight: 700;
    margin-top: 8px;
}

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

.pricing-features li {
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-disclaimer {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 20px;
    line-height: 1.8;
}

.pricing-faq-mini {
    max-width: 900px;
    margin: 0 auto 64px;
}

.pricing-faq-mini h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 32px;
}

.faq-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-mini-item {
    background: var(--bg-gray);
    padding: 24px;
    border-radius: var(--radius-lg);
}

.faq-mini-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text);
}

.faq-mini-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.pricing-urgency {
    max-width: 800px;
    margin: 0 auto;
}

.urgency-box {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    border: 2px solid var(--danger);
    border-radius: var(--radius-xl);
    padding: 40px;
    display: flex;
    gap: 24px;
    align-items: start;
}

.urgency-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.urgency-content strong {
    display: block;
    font-size: 24px;
    color: #991B1B;
    margin-bottom: 8px;
}

.urgency-content p {
    font-size: 15px;
    color: #7F1D1D;
    margin-bottom: 24px;
}

.urgency-timer {
    display: flex;
    gap: 16px;
}

.timer-item {
    background: white;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    min-width: 80px;
}

.timer-value {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--danger);
    line-height: 1;
}

.timer-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ===========================
   FAQ
   =========================== */
.faq-section {
    padding: 100px 0;
    background: var(--bg-gray);
}

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

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-gray);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 32px 24px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

/* ===========================
   CTA FINAL
   =========================== */
.final-cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.final-cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta-content h2 {
    font-size: 56px;
    font-weight: 900;
    color: white;
    margin-bottom: 32px;
    line-height: 1.2;
}

.final-cta-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 48px;
    opacity: 0.95;
}

.final-cta-buttons {
    margin-bottom: 48px;
}

.final-cta-note {
    font-size: 15px;
    opacity: 0.9;
    margin-top: 20px;
}

.final-cta-proof {
    display: flex;
    justify-content: center;
    gap: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-stat {
    text-align: center;
}

.proof-stat strong {
    display: block;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 8px;
}

.proof-stat span {
    display: block;
    font-size: 14px;
    opacity: 0.9;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 16px 0 24px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 14px;
}

.footer-disclaimer {
    margin-top: 8px;
}

/* ===========================
   STICKY BAR (Mobile)
   =========================== */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid var(--primary);
    padding: 16px 20px;
    z-index: 999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    display: none;
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.sticky-text {
    font-size: 14px;
}

/* ===========================
   UTILITÁRIOS
   =========================== */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .problem-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.featured {
        grid-column: span 1;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .comparison-table {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .comparison-arrow {
        transform: rotate(90deg);
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    .menu-mobile {
        display: block;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-proof {
        flex-direction: column;
        gap: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .step-card {
        min-width: 100%;
    }
    
    .faq-mini-grid {
        grid-template-columns: 1fr;
    }
    
    .urgency-box {
        flex-direction: column;
    }
    
    .urgency-timer {
        justify-content: center;
    }
    
    .final-cta-content h2 {
        font-size: 36px;
    }
    
    .final-cta-text {
        font-size: 16px;
    }
    
    .final-cta-proof {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .sticky-bar {
        display: block;
    }
    
    body {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn-large {
        font-size: 15px;
        padding: 14px 24px;
    }
    
    .btn-huge {
        font-size: 16px;
        padding: 16px 32px;
    }
    
    .mockup-body {
        grid-template-columns: 1fr;
    }
    
    .mockup-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
}

/* ===========================
   ANIMAÇÕES EXTRAS
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll reveal */
[data-scroll] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-scroll].revealed {
    opacity: 1;
    transform: translateY(0);
}