/* ===== Sistema de espaçamento profissional ===== */
:root {
    --space-xs: 0.5rem;   /* 8px */
    --space-sm: 1rem;    /* 16px */
    --space-md: 1.5rem;  /* 24px */
    --space-lg: 2rem;    /* 32px */
    --space-xl: 3rem;    /* 48px */
    --space-2xl: 4rem;   /* 64px */
    --space-3xl: 5rem;   /* 80px */
    --space-4xl: 6rem;   /* 96px */
    --space-5xl: 8rem;   /* 128px */
    --section-gap: 6rem; /* espaço entre seções principais */
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #0a0f14;
    color: #e2e8f0;
    overflow-x: hidden;
}

/* Acessibilidade: foco visível consistente */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(34, 211, 238, 0.65);
    outline-offset: 3px;
}

/* Animated Background - Tech Sci-Fi */
.bg-animated {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        repeating-linear-gradient(0deg, rgba(6, 182, 212, 0.03) 0px, transparent 1px, transparent 2px, rgba(6, 182, 212, 0.03) 3px),
        repeating-linear-gradient(90deg, rgba(6, 182, 212, 0.03) 0px, transparent 1px, transparent 2px, rgba(6, 182, 212, 0.03) 3px),
        linear-gradient(135deg, #0a0f14 0%, #0f1419 30%, #1a1f26 60%, #0d1117 100%);
    background-size: 80px 80px, 80px 80px, 100% 100%;
}

.bg-animated::before {
    content: '';
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12), rgba(16, 185, 129, 0.08) 40%, transparent 70%);
    border-radius: 50%;
    top: -400px;
    right: -400px;
    animation: pulse 12s ease-in-out infinite;
    filter: blur(60px);
}

.bg-animated::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.06) 40%, transparent 70%);
    border-radius: 50%;
    bottom: -300px;
    left: -300px;
    animation: pulse 10s ease-in-out infinite reverse;
    filter: blur(50px);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 8rem 2rem 5rem;
    position: relative;
    gap: var(--space-xl);
}

@media (max-width: 768px) {
    .hero {
        padding: 7rem 1.5rem 4rem;
        gap: var(--space-lg);
    }

    .hero-divider-home {
        margin-top: var(--space-lg);
    }

    .pain-section {
        padding: var(--space-4xl) 1.5rem var(--space-xl);
    }

    .prova-social {
        padding: var(--space-4xl) 1.5rem var(--space-3xl);
    }

    .faq {
        padding: var(--space-4xl) 1.5rem;
    }

    .pricing {
        padding: var(--space-4xl) 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6.5rem 1.25rem 3rem;
        gap: var(--space-md);
    }

    .hero-divider-home {
        margin-top: var(--space-md);
    }

    .pain-section {
        padding: var(--space-3xl) 1rem var(--space-lg);
    }

    .prova-social {
        padding: var(--space-3xl) 1rem var(--space-xl);
    }

    .section-subtitle {
        margin-bottom: var(--space-xl);
    }
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

/* Espaço simétrico acima dos títulos principais */
.hero .hero-content > h1 {
    margin-top: var(--space-xl);
}

.feature-hero > h1:first-child,
.feature-hero > h2:first-child {
    margin-top: var(--space-xl);
}

.pricing > .section-title:first-child {
    margin-top: var(--space-xl);
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    background: rgba(10, 15, 20, 0.75);
    border-bottom: 1px solid rgba(6, 182, 212, 0.3);
    backdrop-filter: blur(12px);
    z-index: 50;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.1);
}
.sticky-logo img { height: 75px; filter: drop-shadow(0 0 16px rgba(6,182,212,0.6)); }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.95rem; }

/* Main navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.main-nav a {
    color: #cbd5e1;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.3s ease, transform 0.2s ease;
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #06b6d4, #14b8a6, #06b6d4);
    background-size: 200% 100%;
    opacity: 0;
    box-shadow: 0 0 10px rgba(6,182,212,0.5);
    transition: width 0.35s ease, left 0.35s ease, opacity 0.35s ease;
}
.main-nav a::before {
    content: '';
    position: absolute;
    inset: -6px -10px;
    border-radius: 10px;
    background: radial-gradient(60% 60% at 50% 50%, rgba(6,182,212,0.12), transparent 60%);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
.main-nav a:hover {
    color: #06b6d4;
    background: rgba(6,182,212,0.06);
    box-shadow: inset 0 0 0 1px rgba(6,182,212,0.25);
}
.main-nav a:hover::before {
    opacity: 1;
    transform: scale(1);
}
.main-nav a:hover::after {
    left: 0;
    width: 100%;
    opacity: 1;
    animation: nav-glow 1.2s linear infinite;
}

/* Nav CTA (button inside nav): disable underline/glow effects */
.main-nav a.btn::before,
.main-nav a.btn::after {
    display: none;
}
.main-nav a.btn:hover {
    background: inherit;
    box-shadow: inherit;
}
.main-nav a.btn.btn-primary:hover {
    background: linear-gradient(135deg, #06b6d4, #10b981);
    color: #ffffff;
}
.main-nav a.btn.btn-secondary:hover {
    background: rgba(10, 15, 20, 0.95);
    color: #06b6d4;
}

/* Mobile nav (hamburger + drawer) */
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(6, 182, 212, 0.25);
    background: rgba(6, 182, 212, 0.06);
    color: #e2e8f0;
    cursor: pointer;
    box-shadow: inset 0 0 0 1px rgba(6, 182, 212, 0.12);
}
.nav-toggle:focus-visible {
    outline: 3px solid rgba(34, 211, 238, 0.35);
    outline-offset: 2px;
}
.nav-toggle .nav-toggle-icon {
    position: relative;
    width: 20px;
    height: 14px;
    display: inline-block;
}
.nav-toggle .nav-toggle-icon span {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #06b6d4, #10b981);
    box-shadow: 0 0 12px rgba(6,182,212,0.35);
    transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.nav-toggle .nav-toggle-icon span:nth-child(1) { top: 0; }
.nav-toggle .nav-toggle-icon span:nth-child(2) { top: 6px; }
.nav-toggle .nav-toggle-icon span:nth-child(3) { top: 12px; }

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.64);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 49; /* abaixo do header (50) e abaixo do drawer (60) */
}

@media (max-width: 860px) {
    .sticky-cta { display: none; }
    .nav-toggle { display: inline-flex; }
    .main-nav { display: none; }

    body.nav-open .nav-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    body.nav-open .main-nav {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(86vw, 340px);
        padding: 5.25rem 1rem 1rem;
        flex-direction: column;
        gap: 0.25rem;
        background: rgba(10, 15, 20, 0.94);
        border-left: 1px solid rgba(6, 182, 212, 0.25);
        box-shadow: -20px 0 60px rgba(0,0,0,0.55);
        z-index: 60;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    body.nav-open .nav-toggle .nav-toggle-icon span:nth-child(1) { top: 6px; transform: rotate(45deg); }
    body.nav-open .nav-toggle .nav-toggle-icon span:nth-child(2) { opacity: 0; }
    body.nav-open .nav-toggle .nav-toggle-icon span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

    /* Drawer links: mais altos e sem efeitos de hover sublinhado */
    body.nav-open .main-nav a {
        padding: 0.9rem 0.95rem;
        border-radius: 12px;
        width: 100%;
    }
    body.nav-open .main-nav a::before,
    body.nav-open .main-nav a::after {
        display: none;
    }
    body.nav-open .main-nav a:hover {
        transform: none;
    }

    body.nav-open .main-nav .nav-cta {
        margin-top: 0.5rem;
        justify-content: center;
        text-align: center;
    }
}

/* CTA flutuante (WhatsApp) */
.floating-whatsapp {
    position: fixed;
    right: calc(18px + env(safe-area-inset-right));
    bottom: calc(18px + env(safe-area-inset-bottom));
    z-index: 70;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 999px;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border: 1px solid rgba(34, 197, 94, 0.35);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.floating-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 55px rgba(34, 197, 94, 0.18), 0 18px 45px rgba(0, 0, 0, 0.45);
    filter: saturate(1.05);
}
.floating-whatsapp .wa-badge {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
    font-size: 1.05rem;
    line-height: 1;
}
.floating-whatsapp .wa-label {
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    white-space: nowrap;
}
.floating-whatsapp .wa-sub {
    display: block;
    font-weight: 500;
    font-size: 0.75rem;
    opacity: 0.9;
    line-height: 1.15;
}
@media (max-width: 480px) {
    .floating-whatsapp {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
    }
    .floating-whatsapp .wa-label {
        display: none;
    }
    .floating-whatsapp .wa-badge {
        width: 42px;
        height: 42px;
        font-size: 1.15rem;
    }
}

@keyframes nav-glow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.logo {
    width: 300;
    height: 300px;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 0 30px rgba(6, 182, 212, 0.5)) drop-shadow(0 0 60px rgba(16, 185, 129, 0.3));
    animation: float 6s ease-in-out infinite;
}

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

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #06b6d4, #10b981, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
    line-height: 1.2;
    text-shadow: 0 0 40px rgba(6, 182, 212, 0.3);
}

.subtitle {
    font-size: 1.35rem;
    color: #b8c0cc;
    margin-bottom: var(--space-lg);
    font-weight: 400;
    line-height: 1.65;
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-proof-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-md);
    margin-bottom: var(--space-lg);
    max-width: 50rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #cbd5e1;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.45);
    border-radius: 12px;
    font-weight: 500;
}

.hero-cta-secondary {
    color: #06b6d4;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}
.hero-cta-secondary:hover {
    color: #22d3ee;
    text-decoration: underline;
}

.highlight {
    color: #06b6d4;
    font-weight: 600;
}

.cta-group {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.btn {
    padding: 1.1rem 2.8rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #06b6d4, #10b981);
    color: white;
    border: 1px solid rgba(6, 182, 212, 0.28);
    box-shadow: 0 12px 26px rgba(6, 182, 212, 0.18);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(6, 182, 212, 0.22);
}

.btn-secondary {
    background: rgba(10, 15, 20, 0.8);
    color: #06b6d4;
    border: 2px solid rgba(6, 182, 212, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(10, 15, 20, 0.95);
    border-color: rgba(6, 182, 212, 0.8);
    box-shadow: 0 10px 22px rgba(6, 182, 212, 0.16);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.stat-card {
    background: linear-gradient(135deg, rgba(10, 15, 20, 0.85), rgba(15, 20, 25, 0.7));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.stat-card:hover {
    border-color: rgba(6, 182, 212, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #94a3b8;
    font-size: 0.95rem;
}

.hero-divider-home {
    margin: var(--space-xl) auto 0;
}

/* Benefits Section */
.benefits {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    background: linear-gradient(135deg, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.4));
}

.section-subtitle {
    text-align: center;
    color: #94a3b8;
    font-size: 1.2rem;
    margin-bottom: var(--space-2xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Pain section: 2 col x 3 linhas, só texto, sem ilustrações */
.pain-section {
    padding: var(--space-5xl) 2rem var(--space-2xl);
    max-width: 1100px;
    margin: 0 auto;
}
.pain-section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: var(--space-xl);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}
.pain-card {
    background: #0c1118;
    border: 1px solid rgba(56, 189, 248, 0.28);
    border-radius: 16px;
    padding: var(--space-lg) var(--space-md);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.pain-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #06b6d4;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}
.pain-card-body {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #b8c0cc;
    margin: 0;
}
.pain-section-close {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: #e2e8f0;
    max-width: 36rem;
    margin: 0 auto var(--space-md);
    line-height: 1.5;
}
.pain-section-cta {
    text-align: center;
    margin: 0;
}
.pain-cta-link {
    color: #06b6d4;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
}
.pain-cta-link:hover {
    text-decoration: underline;
    color: #22d3ee;
}

@media (max-width: 768px) {
    .pain-section-title {
        font-size: 1.6rem;
    }
    .pain-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    .pain-card {
        padding: var(--space-md) var(--space-sm);
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(10, 15, 20, 0.9), rgba(15, 20, 25, 0.75));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #06b6d4, #10b981);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    border-color: rgba(6, 182, 212, 0.6);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.35);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 182, 212, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

.benefit-card:hover .benefit-icon {
    background: rgba(6, 182, 212, 0.3);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.4);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
}

.benefit-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-description {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 1.05rem;
}

.benefit-description strong {
    color: #06b6d4;
    font-weight: 600;
}

.benefit-metric {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.4);
    border-radius: 8px;
    color: #06b6d4;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

/* Journey Section - Redesigned Premium */
.journey-section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

/* Timeline vertical com linha sofisticada */
.journey-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.timeline-connector {
    position: absolute;
    left: 50%;
    top: 80px;
    bottom: 80px;
    width: 2px;
    background: linear-gradient(180deg, 
        rgba(6, 182, 212, 0) 0%,
        rgba(6, 182, 212, 0.8) 10%,
        rgba(20, 184, 166, 0.8) 50%,
        rgba(16, 185, 129, 0.8) 90%,
        rgba(16, 185, 129, 0) 100%
    );
    transform: translateX(-50%);
    z-index: 0;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.6);
}

.timeline-connector::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 12px;
    height: 12px;
    background: #06b6d4;
    border-radius: 50%;
    transform: translateX(-50%);
    animation: pulse-down 4s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.9), 0 0 60px rgba(6, 182, 212, 0.5);
}

@keyframes pulse-down {
    0% {
        top: 0;
        opacity: 0;
        transform: translateX(-50%) scale(0.3);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
        transform: translateX(-50%) scale(1.2);
    }
    100% {
        top: 100%;
        opacity: 0;
        transform: translateX(-50%) scale(0.3);
    }
}

/* Step cards flutuantes */
.journey-step {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    gap: 4rem;
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-step.animated {
    opacity: 1;
    transform: translateY(0);
}

.journey-step:nth-child(even) .step-content {
    order: 3;
}

.journey-step:nth-child(even) .step-visual {
    order: 1;
}

/* Número central com design premium */
.step-number-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-number {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(6, 182, 212, 0.4), transparent 70%),
        linear-gradient(135deg, rgba(10, 15, 20, 0.95), rgba(15, 20, 25, 0.9));
    backdrop-filter: blur(30px);
    border: 3px solid rgba(6, 182, 212, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 900;
    background-clip: padding-box;
    color: #06b6d4;
    box-shadow: 
        0 0 60px rgba(6, 182, 212, 0.5),
        0 20px 40px rgba(0, 0, 0, 0.6),
        inset 0 2px 12px rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.4), transparent 65%);
    animation: pulse-ring-premium 3s ease-in-out infinite;
    z-index: -1;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(6, 182, 212, 0.3);
    opacity: 0;
    transition: all 0.5s ease;
}

@keyframes pulse-ring-premium {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.journey-step:hover .step-number {
    transform: scale(1.15) rotate(5deg);
    border-color: rgba(6, 182, 212, 1);
    box-shadow: 
        0 0 80px rgba(6, 182, 212, 0.8),
        0 30px 60px rgba(0, 0, 0, 0.8);
}

.journey-step:hover .step-number::after {
    opacity: 1;
    inset: -16px;
}

/* Cards de conteúdo premium */
.step-content {
    background: 
        radial-gradient(circle at top right, rgba(6, 182, 212, 0.08), transparent 60%),
        linear-gradient(135deg, rgba(10, 15, 20, 0.98), rgba(15, 20, 25, 0.95));
    backdrop-filter: blur(30px);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 28px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #06b6d4, #14b8a6, #10b981, transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.step-content::after {
    content: '';
    position: absolute;
    inset: -100%;
    background: radial-gradient(circle at center, rgba(6, 182, 212, 0.15), transparent 50%);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

.journey-step:hover .step-content {
    border-color: rgba(6, 182, 212, 0.7);
    transform: translateY(-8px);
    box-shadow: 
        0 30px 80px rgba(6, 182, 212, 0.3),
        0 10px 40px rgba(0, 0, 0, 0.8);
}

.journey-step:hover .step-content::before {
    opacity: 1;
}

.journey-step:hover .step-content::after {
    opacity: 1;
    inset: -50%;
}

.step-tag {
    display: inline-block;
    padding: 0.6rem 1.3rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.25), rgba(20, 184, 166, 0.15));
    border: 1px solid rgba(6, 182, 212, 0.5);
    border-radius: 24px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #06b6d4;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
    transition: all 0.3s ease;
}

.journey-step:hover .step-tag {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.35), rgba(20, 184, 166, 0.25));
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
}

.step-title {
    font-size: 2rem;
    font-weight: 800;
    color: #e2e8f0;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.step-description {
    color: #94a3b8;
    line-height: 1.9;
    font-size: 1.08rem;
}

.step-highlight {
    color: #10b981;
    font-weight: 700;
}

/* Visual cards com ícones grandes */
.step-visual {
    background: 
        radial-gradient(circle at center, rgba(6, 182, 212, 0.12), transparent 70%),
        linear-gradient(135deg, rgba(10, 15, 20, 0.95), rgba(15, 20, 25, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 28px;
    padding: 3rem;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.step-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.2), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.journey-step:hover .step-visual {
    border-color: rgba(6, 182, 212, 0.6);
    box-shadow: 
        0 20px 60px rgba(6, 182, 212, 0.4),
        0 10px 40px rgba(0, 0, 0, 0.8);
    transform: scale(1.05);
}

.journey-step:hover .step-visual::before {
    opacity: 1;
}

.visual-icon {
    font-size: 6rem;
    filter: drop-shadow(0 10px 40px rgba(6, 182, 212, 0.7));
    animation: float-smooth 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

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

.visual-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #06b6d4;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 12px rgba(6, 182, 212, 1);
}

.step-visual:hover .particle {
    animation: particle-burst-premium 2s ease-out forwards;
}

@keyframes particle-burst-premium {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0);
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(var(--x), var(--y)) scale(1.5);
    }
}

/* CTA final premium redesenhado */
.journey-cta {
    margin-top: 8rem;
    text-align: center;
    position: relative;
    padding: 0 2rem;
}

.cta-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 4rem;
    background: 
        radial-gradient(ellipse at top, rgba(6, 182, 212, 0.03), transparent 60%),
        radial-gradient(ellipse at bottom, rgba(16, 185, 129, 0.03), transparent 60%),
        linear-gradient(135deg, rgba(10, 15, 20, 0.5), rgba(15, 20, 25, 0.3));
    backdrop-filter: blur(40px);
    border-radius: 40px;
    border: 1px solid rgba(6, 182, 212, 0.15);
    overflow: visible;
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-container::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 40px;
    padding: 1px;
    background: linear-gradient(135deg, 
        rgba(6, 182, 212, 0.3), 
        rgba(16, 185, 129, 0.2), 
        rgba(6, 182, 212, 0.1),
        transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.cta-container:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 
        0 60px 140px rgba(6, 182, 212, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cta-container:hover::before {
    opacity: 1;
}

.cta-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08), transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse-soft 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Efeito de brilho que percorre o card */
.cta-container .cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(6, 182, 212, 0.1) 50%,
        transparent 100%
    );
    animation: shine-pass 8s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes shine-pass {
    0%, 100% {
        left: -100%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        left: 100%;
        opacity: 1;
    }
    60%, 100% {
        opacity: 0;
    }
}

@keyframes pulse-soft {
    0%, 100% { 
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-emoji {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: inline-block;
    filter: drop-shadow(0 10px 30px rgba(6, 182, 212, 0.4));
    animation: float-gentle 4s ease-in-out infinite;
}

@keyframes float-gentle {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-15px) rotate(5deg); 
    }
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        box-shadow: inset 0 0 25px rgba(45, 212, 191, 0.4), 0 0 25px rgba(56, 189, 248, 0.35);
    }
    50% {
        transform: scale(1.06);
        box-shadow: inset 0 0 32px rgba(45, 212, 191, 0.55), 0 0 38px rgba(56, 189, 248, 0.55);
    }
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #e2e8f0 0%, #06b6d4 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: none;
    position: relative;
}

.cta-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #06b6d4, transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.6);
}

.cta-description {
    color: #cbd5e1;
    font-size: 1.2rem;
    max-width: 650px;
    margin: 2rem auto 0;
    line-height: 1.8;
    font-weight: 400;
}

.cta-description strong {
    color: #06b6d4;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

/* Responsivo para Journey Section */
@media (max-width: 1024px) {
    .journey-step {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .journey-step:nth-child(even) .step-content,
    .journey-step:nth-child(even) .step-visual {
        order: unset;
    }

    .timeline-connector {
        display: none;
    }

    .step-number-wrapper {
        position: absolute;
        top: -40px;
        left: 2rem;
        z-index: 3;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-visual {
        min-height: 150px;
    }

    .visual-icon {
        font-size: 3.5rem;
    }
}

@media (max-width: 640px) {
    .journey-section {
        padding: 4rem 1rem;
    }

    .step-content {
        padding: 2rem 1.5rem;
    }

    .step-title {
        font-size: 1.4rem;
    }

    .journey-cta {
        margin-top: 5rem;
        padding: 0 1rem;
    }
    
    .cta-container {
        padding: 3.5rem 2rem;
        border-radius: 32px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-title::after {
        width: 60px;
        height: 2px;
    }
    
    .cta-emoji {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-description {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .journey-cta {
        margin-top: 4rem;
    }
    
    .cta-container {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-emoji {
        font-size: 2.5rem;
    }
    
    .cta-description {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* Benefits Pair Layout - Versão Transformada */
.benefit-pairs {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.benefit-pair {
    display: flex;
    align-items: stretch;
    gap: 3rem;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-pair.animated {
    opacity: 1;
    transform: translateY(0);
}

.benefit-pair:nth-child(even) {
    flex-direction: row-reverse;
}

.pair-image {
    flex: 1 1 45%;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(6, 182, 212, 0.3);
    background: linear-gradient(135deg, rgba(10,15,20,0.95), rgba(15,20,25,0.75));
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    min-height: 380px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.pair-image:hover {
    transform: scale(1.02);
    border-color: rgba(6, 182, 212, 0.6);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.35);
}

.pair-image img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 16px;
    box-shadow: 0 24px 50px rgba(2, 6, 23, 0.45);
}

.pair-cards {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

/* Social Proof Section */
.social-proof {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.dashboard-preview {
    margin: 3rem 0;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(6, 182, 212, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(6, 182, 212, 0.2);
}

.dashboard-preview img {
    width: 100%;
    height: auto;
    display: block;
}

/* Dashboard Carousel */
.dashboard-carousel { 
    position: relative; 
    margin: 3rem auto; 
    border-radius: 20px; 
    overflow: hidden; 
    border: 2px solid rgba(6,182,212,0.4); 
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(6,182,212,0.2);
    max-width: 100%;
    width: fit-content;
    min-width: 300px;
}
.carousel-container { 
    display: flex; 
    transition: transform 0.6s ease; 
    width: 100%; 
}
.carousel-slide { 
    min-width: 100%; 
    position: relative; 
    flex-shrink: 0; 
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background: rgba(10, 15, 20, 0.6);
}
.carousel-slide img { 
    max-width: 100%; 
    max-height: 80vh;
    height: auto; 
    display: block;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Showcase carousel layout matching feature style */
.showcase-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    align-items: center;
}
.showcase-info { text-align: left; }
.showcase-info .feature-heading { margin-bottom: 1rem; flex-direction: column; align-items: flex-start; gap: 0.6rem; }
.showcase-info p { color: #94a3b8; line-height: 1.8; margin-bottom: 1rem; }
.showcase-image .media-card { margin: 0; }
.carousel-caption { 
    position: absolute; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    padding: 1rem 1.2rem; 
    background: linear-gradient(180deg, rgba(2,6,23,0) 0%, rgba(2,6,23,0.8) 100%); 
    color: #cbd5e1; 
    font-size: 0.95rem; 
}
.carousel-controls { 
    position: absolute; 
    inset: 0; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    pointer-events: none; 
    z-index: 10; 
}
.prev-btn, .next-btn { 
    pointer-events: all; 
    border: 1px solid rgba(6,182,212,0.3); 
    background: rgba(10,15,20,0.7); 
    color: #06b6d4; 
    width: 42px; 
    height: 42px; 
    border-radius: 50%; 
    display: grid; 
    place-items: center; 
    margin: 0 10px; 
    cursor: pointer; 
    transition: all 0.2s ease; 
    z-index: 11; 
}
.prev-btn:hover, .next-btn:hover { 
    background: rgba(10,15,20,0.9); 
    border-color: rgba(6,182,212,0.6);
    box-shadow: 0 0 20px rgba(6,182,212,0.3);
}
.carousel-dots { 
    position: absolute; 
    left: 0; 
    right: 0; 
    bottom: 10px; 
    display: flex; 
    gap: 8px; 
    justify-content: center; 
    z-index: 10; 
}
.carousel-dot { 
    width: 8px; 
    height: 8px; 
    border-radius: 50%; 
    background: rgba(148,163,184,0.5); 
    cursor: pointer; 
    transition: all 0.2s ease; 
    z-index: 11; 
}
.carousel-dot.active { 
    background: #06b6d4;
    box-shadow: 0 0 10px rgba(6,182,212,0.6);
}
.carousel-dot:hover { 
    background: rgba(148,163,184,0.8); 
    transform: scale(1.2); 
}
.zoom-overlay { 
    position: fixed; 
    inset: 0; 
    background: rgba(0,0,0,0.8); 
    display: none; 
    align-items: center; 
    justify-content: center; 
    z-index: 60; 
}
.zoom-overlay.active { 
    display: flex; 
}
.zoom-img { 
    max-width: 92vw; 
    max-height: 92vh; 
    border-radius: 12px; 
    box-shadow: 0 20px 60px rgba(0,0,0,0.6); 
}
.close-zoom { 
    position: absolute; 
    top: 20px; 
    right: 24px; 
    font-size: 28px; 
    color: #e2e8f0; 
    cursor: pointer; 
}

/* Prova Social / Depoimentos */
.prova-social {
    padding: var(--space-5xl) 2rem var(--space-4xl);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.prova-social-trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
    margin-bottom: var(--space-xl);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.25);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #94a3b8;
    transition: all 0.25s ease;
}

.trust-badge:hover {
    color: #06b6d4;
    border-color: rgba(6, 182, 212, 0.45);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
}

.trust-icon {
    font-size: 1rem;
    opacity: 0.9;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
    margin-top: 0;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(10, 15, 20, 0.95), rgba(15, 20, 25, 0.8));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(6, 182, 212, 0.35);
    border-radius: 20px;
    padding: var(--space-lg) var(--space-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #06b6d4, #10b981, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(6, 182, 212, 0.55);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.18), 0 8px 32px rgba(0, 0, 0, 0.35);
    transform: translateY(-4px);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #10b981;
    padding: 0.3rem 0.65rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: 999px;
}

.testimonial-quote-wrapper {
    position: relative;
    padding-top: 0.5rem;
}

.quote-mark {
    position: absolute;
    top: -0.5rem;
    left: -0.15rem;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(6, 182, 212, 0.25);
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-quote {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin: 0;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.metric-pill {
    font-size: 0.8rem;
    font-weight: 600;
    color: #06b6d4;
    padding: 0.35rem 0.75rem;
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 999px;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.testimonial-name {
    font-weight: 600;
    color: #e2e8f0;
    font-size: 1rem;
}

.testimonial-company {
    color: #94a3b8;
    font-size: 0.95rem;
}

.testimonial-size {
    color: #64748b;
    font-size: 0.875rem;
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.3));
}

.testimonial-card-placeholder {
    border-style: dashed;
    border-color: rgba(6, 182, 212, 0.4);
    align-items: center;
    justify-content: center;
    min-height: 260px;
    background: linear-gradient(135deg, rgba(10, 15, 20, 0.6), rgba(15, 20, 25, 0.5));
}

.testimonial-card-placeholder:hover {
    border-color: rgba(6, 182, 212, 0.6);
    background: linear-gradient(135deg, rgba(10, 15, 20, 0.75), rgba(15, 20, 25, 0.65));
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    padding: 0.5rem;
}

.placeholder-icon {
    font-size: 2.5rem;
    opacity: 0.6;
}

.testimonial-placeholder-text {
    color: #94a3b8;
    font-style: normal;
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500;
}

.placeholder-subtext {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

.testimonial-card-placeholder .btn {
    margin-top: 0.5rem;
}

.prova-social-cta-note {
    text-align: center;
    margin-top: var(--space-xl);
    font-size: 1rem;
    color: #94a3b8;
}

.prova-social-cta-note a {
    color: #06b6d4;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.prova-social-cta-note a:hover {
    color: #22d3ee;
    text-decoration: underline;
}

.testimonial-cta {
    color: #06b6d4;
    font-weight: 600;
    text-decoration: none;
    margin-top: 0.5rem;
    display: inline-block;
}

.testimonial-cta:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .prova-social-trust-bar {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    .trust-badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.85rem;
    }
    .testimonial-card {
        padding: 1.5rem 1.25rem;
    }
    .testimonial-card-placeholder {
        min-height: 240px;
    }
}

/* FAQ */
.faq { 
    padding: var(--space-5xl) 2rem; 
    max-width: 1000px; 
    margin: 0 auto; 
}
.faq-accordion { 
    display: grid; 
    gap: var(--space-md); 
    margin-top: var(--space-xl); 
}
.faq-item { 
    background: linear-gradient(135deg, rgba(10,15,20,0.85), rgba(15,20,25,0.7)); 
    border: 1px solid rgba(6,182,212,0.3); 
    border-radius: 14px; 
    overflow: hidden; 
    transition: all 0.3s ease; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.faq-item:hover { 
    border-color: rgba(6,182,212,0.5);
    box-shadow: 0 8px 30px rgba(6,182,212,0.2);
}
.faq-question { 
    width: 100%; 
    text-align: left; 
    background: transparent; 
    border: 0; 
    color: #e2e8f0; 
    padding: 1.1rem 1.2rem; 
    font-size: 1.05rem; 
    font-weight: 600; 
    cursor: pointer; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    transition: color 0.3s ease; 
}
.faq-question:hover { 
    color: #06b6d4; 
}
.faq-question::after { 
    content: '+'; 
    color: #06b6d4; 
    font-weight: 800; 
    font-size: 1.2rem; 
    transition: transform 0.3s ease; 
}
.faq-item.active .faq-question::after { 
    content: '−'; 
    transform: rotate(180deg); 
}
.faq-answer { 
    color: #cbd5e1; 
    padding: 0 3rem 0 3rem; 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.5s ease, padding 0.5s ease; 
    line-height: 1.7;
}
.faq-item.active .faq-answer { 
    padding: 0.5rem 1.25rem 1.75rem 1.25rem; 
    max-height: 2000px; 
}
.faq-answer > * + * {
    margin-top: 0.85rem;
}
.faq-answer p:last-child,
.faq-answer ul:last-child {
    margin-bottom: 1.2rem;
}
.faq-answer .features {
    margin-bottom: 1.2rem;
}
.faq-answer > * + * {
    margin-top: 0.75rem;
}
.faq-answer .features {
    margin-bottom: 1.2rem;
}

/* Brand Story Preview */
.brand-story { 
    padding: 6rem 2rem; 
    max-width: 1200px; 
    margin: 0 auto; 
}
.story-preview { 
    display: grid; 
    grid-template-columns: 1.4fr 1fr; 
    gap: 2rem; 
    align-items: center; 
}
.story-content { 
    color: #cbd5e1; 
    line-height: 1.8; 
}
.story-cta { 
    text-align: center; 
}

/* Utilities */
.animate-on-scroll { 
    opacity: 0; 
    transform: translateY(8px); 
    transition: all 0.5s ease; 
}
.animate-on-scroll.animated { 
    opacity: 1; 
    transform: translateY(0); 
}

/* Pricing Section */
.pricing {
    padding: var(--space-5xl) 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.pricing-cta-bottom {
    text-align: center;
    margin-top: var(--space-xl);
}

.pricing-card {
    background: linear-gradient(135deg, rgba(10, 15, 20, 0.85), rgba(15, 20, 25, 0.7));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 20px;
    padding: var(--space-xl);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.6);
    box-shadow: 0 30px 60px rgba(6, 182, 212, 0.35);
}

.pricing-card.featured {
    border: 2px solid #06b6d4;
    box-shadow: 0 25px 50px rgba(6, 182, 212, 0.4);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #06b6d4, #10b981);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.plan-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #06b6d4;
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.65rem;
    font-weight: 800;
    color: #e2e8f0;
    margin-bottom: 0.35rem;
}

.plan-price .price-amount {
    font-size: 3rem;
    line-height: 1;
}

.plan-price .price-period {
    font-size: 1.2rem;
    color: #94a3b8;
    font-weight: 400;
}

.plan-description {
    color: #94a3b8;
    margin-bottom: var(--space-lg);
    line-height: 1.6;
    margin-top: var(--space-md);
}

.pricing-card {
    cursor: pointer;
}

.pricing-card:focus-visible {
    outline: 3px solid rgba(34, 211, 238, 0.85);
    outline-offset: 4px;
}

.pricing-card.billing-annual {
    border-color: rgba(16, 185, 129, 0.8);
    box-shadow: 0 30px 70px rgba(16, 185, 129, 0.45);
}

.pricing-card.billing-annual .plan-name {
    color: #10b981;
}

.billing-toggle-hint {
    font-size: 0.95rem;
    color: #38bdf8;
    margin-bottom: 0.85rem;
    opacity: 0.75;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.pricing-card:hover .billing-toggle-hint,
.pricing-card:focus-visible .billing-toggle-hint {
    color: #22d3ee;
    opacity: 1;
}

.billing-discount-tag {
    display: none;
    align-items: center;
    gap: 0.35rem;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.95), rgba(16, 185, 129, 0.95));
    color: #0f172a;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    box-shadow: 0 0 22px rgba(34, 211, 238, 0.35);
    margin-bottom: 1.2rem;
}

.pricing-card.billing-annual .billing-discount-tag {
    display: inline-flex;
}

.setup-highlight {
    margin-top: 3.5rem;
    padding: 2.75rem 3.25rem;
    border-radius: 24px;
    background:
        radial-gradient(circle at top, rgba(56, 189, 248, 0.22), rgba(14, 116, 144, 0.06) 55%),
        linear-gradient(135deg, rgba(14, 165, 233, 0.16), rgba(16, 185, 129, 0.08));
    border: 1px solid rgba(56, 189, 248, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    color: #e2e8f0;
    box-shadow: 0 24px 64px rgba(13, 148, 136, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.setup-highlight::before {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 16px;
    border: 1px solid rgba(94, 234, 212, 0.25);
    pointer-events: none;
}

.setup-highlight::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25), transparent 70%);
    top: -60px;
    right: -50px;
    opacity: 0.6;
    pointer-events: none;
}

.setup-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(16, 185, 129, 0.2));
    border: 1px solid rgba(56, 189, 248, 0.45);
    box-shadow: inset 0 0 25px rgba(45, 212, 191, 0.4), 0 0 25px rgba(56, 189, 248, 0.35);
    font-size: 2rem;
    filter: drop-shadow(0 0 18px rgba(56, 189, 248, 0.9));
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Grid de cards "Onde entra cada valor" — visual SaaS elite, VALOR em cyan elétrico */
.value-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
    margin-top: 0.5rem;
    text-align: left;
    width: 100%;
}
.value-card {
    position: relative;
    padding: 1.85rem 1.65rem;
    border-radius: 18px;
    background: #0c1118;
    border: 1px solid rgba(56, 189, 248, 0.28);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover {
    border-color: rgba(56, 189, 248, 0.45);
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.18), 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.value-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    color: #06b6d4;
    opacity: 0.9;
}
.value-card-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.value-card:hover .value-card-icon {
    opacity: 1;
}
/* Título = onde está o VALOR — cyan elétrico do projeto, neutro (investimento, não “benefício”) */
.value-card-title {
    font-size: 1.12rem;
    font-weight: 800;
    color: #06b6d4;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
    text-shadow: 0 0 24px rgba(6, 182, 212, 0.4);
}
.value-card-desc {
    font-size: 0.98rem;
    line-height: 1.65;
    color: #b8c0cc;
    margin: 0;
}

@media (max-width: 768px) {
    .value-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .value-card {
        padding: 1.5rem 1.35rem;
    }
}

.setup-copy {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1.05rem;
    color: #dbeafe;
    max-width: 540px;
}

.setup-copy strong {
    color: #f8fafc;
    font-size: 1.2rem;
    letter-spacing: 0.03em;
}

.setup-copy span {
    color: #a5b4fc;
    font-size: 1rem;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    padding: 0.75rem 0;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.features li::before {
    content: '✓';
    color: #06b6d4;
    font-weight: 800;
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    padding: var(--space-5xl) 2rem var(--space-2xl);
    max-width: 1200px;
    margin: 0 auto;
}

.contact.contact-page {
    padding: var(--space-2xl) 2rem var(--space-2xl);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin: var(--space-xl) auto var(--space-xl);
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

.contact-lead {
    padding-top: 0;
}

.lead-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

.lead-copy {
    background: linear-gradient(135deg, rgba(10, 15, 20, 0.9), rgba(15, 20, 25, 0.75));
    border: 1px solid rgba(6,182,212,0.3);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.lead-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.25));
}

.lead-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.lead-whatsapp {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border: 1px solid rgba(34, 197, 94, 0.35);
    box-shadow: 0 10px 22px rgba(34, 197, 94, 0.18);
}

.lead-whatsapp:hover {
    box-shadow: 0 14px 28px rgba(34, 197, 94, 0.22);
}

.lead-note {
    color: #94a3b8;
    font-size: 0.9rem;
}

.lead-bullets {
    list-style: none;
    margin: 0;
    padding: 0.25rem 0 0 0;
    display: grid;
    gap: 0.75rem;
}

.lead-bullets li {
    color: #cbd5e1;
    line-height: 1.6;
    padding-left: 1.65rem;
    position: relative;
}

.lead-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(6,182,212,0.35) inset, 0 0 10px rgba(6,182,212,0.5);
    background: radial-gradient(circle, #06b6d4 40%, transparent 41%);
}

.lead-form {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
}

.lead-form .form-group {
    margin-bottom: 0;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.lead-submit {
    width: 100%;
    margin-top: auto;
}

.lead-legal {
    color: #64748b;
    font-size: 0.85rem;
    margin-top: 0.75rem;
    text-align: center;
}

/* Data Flow - Premium Redesign */
.data-flow { 
    padding: 8rem 2rem 4rem 2rem; 
    max-width: 1400px; 
    margin: 0 auto; 
}

.data-flow-inner { 
    display: flex; 
    flex-direction: column; 
    gap: 3rem; 
}

.flow-header {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.flow-header .section-title {
    text-align: center;
}

.flow-header .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.flow-layout { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 2rem; 
    align-items: stretch; 
}

/* Canvas principal com SVG */
.flow-canvas { 
    position: relative; 
    min-height: 600px;
    border-radius: 28px; 
    overflow: visible;
    border: 1px solid rgba(6,182,212,0.3); 
    background: 
        radial-gradient(circle at 50% 20%, rgba(6, 182, 212, 0.08), transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(16, 185, 129, 0.08), transparent 50%),
        linear-gradient(135deg, rgba(10,15,20,0.98), rgba(15,20,25,0.95)); 
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
}

#pipeline-svg { 
    width: 100%; 
    height: 100%; 
    display: block; 
    position: absolute;
    inset: 0;
}

.stream-line { 
    fill: none; 
    stroke-linecap: round; 
    opacity: 0.85;
    filter: drop-shadow(0 0 4px currentColor);
}

.flow-core-icon {
    filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.6)) drop-shadow(0 0 40px rgba(6, 182, 212, 0.3));
    opacity: 0.9;
}

/* Placeholders para logos de plataformas (topo) - Logos flutuando sem card */
.flow-sources {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2.5rem;
    width: 95%;
    z-index: 10;
    pointer-events: none;
}

.flow-source-slot {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: float-logo 3s ease-in-out infinite;
}

/* Alturas diferentes para cada logo */
.flow-source-slot:nth-child(1) { margin-top: 20px; animation-delay: 0s; }
.flow-source-slot:nth-child(2) { margin-top: 0px; animation-delay: 0.15s; }
.flow-source-slot:nth-child(3) { margin-top: 35px; animation-delay: 0.3s; }
.flow-source-slot:nth-child(4) { margin-top: 10px; animation-delay: 0.45s; }
.flow-source-slot:nth-child(5) { margin-top: 25px; animation-delay: 0.6s; }
.flow-source-slot:nth-child(6) { margin-top: 5px; animation-delay: 0.75s; }
.flow-source-slot:nth-child(7) { margin-top: 30px; animation-delay: 0.9s; }
.flow-source-slot:nth-child(8) { margin-top: 15px; animation-delay: 1.05s; }

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

.flow-source-slot:hover {
    transform: translateY(-20px) scale(1.15);
    animation: none;
    filter: drop-shadow(0 15px 30px rgba(6, 182, 212, 0.5));
}

.flow-source-slot img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: brightness(0.95) contrast(1.05) drop-shadow(0 4px 12px rgba(6, 182, 212, 0.3));
    transition: all 0.4s ease;
}

.flow-source-slot:hover img {
    filter: brightness(1.15) contrast(1.15) drop-shadow(0 8px 20px rgba(6, 182, 212, 0.6));
}

/* Placeholder quando vazio */
.flow-source-slot:empty::after {
    content: '+';
    font-size: 2.5rem;
    color: rgba(6, 182, 212, 0.3);
    font-weight: 200;
}

/* Placeholders para outputs (base) - Ancorados aos pontos de saída */
.flow-outputs {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
}

.flow-output-group {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    pointer-events: auto;
    bottom: 50px;
}

/* Ancoragem aos pontos de saída do SVG */
.flow-output-group:nth-child(1) { left: 25%; transform: translateX(-50%); }
.flow-output-group:nth-child(2) { left: 50%; transform: translateX(-50%); }
.flow-output-group:nth-child(3) { left: 75%; transform: translateX(-50%); }

.flow-output-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: float-output-subtle 4s ease-in-out infinite;
}

.flow-output-group:nth-child(1) .flow-output-slot { animation-delay: 0s; }
.flow-output-group:nth-child(2) .flow-output-slot { animation-delay: 0.4s; }
.flow-output-group:nth-child(3) .flow-output-slot { animation-delay: 0.8s; }

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

.flow-output-slot:hover {
    transform: translateY(-15px) scale(1.15);
    animation: none;
    filter: drop-shadow(0 15px 30px rgba(16, 185, 129, 0.5));
}

.flow-output-slot img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0.95) contrast(1.05) drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
    transition: all 0.4s ease;
}

.flow-output-slot:hover img {
    filter: brightness(1.15) contrast(1.15) drop-shadow(0 8px 20px rgba(16, 185, 129, 0.6));
}

.flow-output-slot:empty::after {
    content: '⚡';
    font-size: 3rem;
    opacity: 0.3;
    color: rgba(16, 185, 129, 0.4);
}

.flow-output-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #10b981;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

/* Descrições laterais */
.flow-descriptions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.flow-desc-card {
    background: 
        radial-gradient(circle at top left, rgba(6, 182, 212, 0.08), transparent 60%),
        linear-gradient(135deg, rgba(10, 15, 20, 0.95), rgba(15, 20, 25, 0.9));
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.flow-desc-card:hover {
    border-color: rgba(6, 182, 212, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(6, 182, 212, 0.2);
}

.flow-desc-card .flow-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle, #06b6d4, transparent);
    box-shadow: 0 0 16px rgba(6, 182, 212, 0.7);
    margin-bottom: 1rem;
}

.flow-desc-card .flow-title {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
}

.flow-desc-card .flow-desc {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .data-flow {
        padding: 6rem 1.5rem 3rem 1.5rem;
    }
    .flow-canvas { min-height: 500px; }
    .flow-sources { gap: 1.8rem; top: 30px; width: 95%; }
    .flow-source-slot img { width: 50px; height: 50px; }
    .flow-output-group { bottom: 40px; }
    .flow-output-slot img { width: 65px; height: 65px; }
}

@media (max-width: 640px) {
    .data-flow {
        padding: 5rem 1rem 2rem 1rem;
    }
    .flow-canvas { min-height: 450px; }
    .flow-sources { flex-wrap: wrap; max-width: 95%; gap: 1.2rem; justify-content: space-around; }
    .flow-source-slot { margin-top: 0 !important; }
    .flow-source-slot img { width: 40px; height: 40px; }
    .flow-output-group { bottom: 30px; }
    .flow-output-group:nth-child(1) { left: 20%; }
    .flow-output-group:nth-child(2) { left: 50%; }
    .flow-output-group:nth-child(3) { left: 80%; }
    .flow-output-slot img { width: 55px; height: 55px; }
}

/* Lead Capture (InfoPrice-style adapted) */
.lead-capture {
    padding: 6rem 2rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.lead-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

.lead-copy {
    background: linear-gradient(135deg, rgba(10, 15, 20, 0.9), rgba(15, 20, 25, 0.75));
    border: 1px solid rgba(6,182,212,0.3);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.lead-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.25));
}

.lead-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.lead-whatsapp {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border: 1px solid rgba(34, 197, 94, 0.35);
    box-shadow: 0 10px 22px rgba(34, 197, 94, 0.18);
}

.lead-whatsapp:hover {
    box-shadow: 0 14px 28px rgba(34, 197, 94, 0.22);
}

.lead-note {
    color: #94a3b8;
    font-size: 0.9rem;
}

.lead-bullets {
    list-style: none;
    margin: 0;
    padding: 0.25rem 0 0 0;
    display: grid;
    gap: 0.75rem;
}

.lead-bullets li {
    color: #cbd5e1;
    line-height: 1.6;
    padding-left: 1.65rem;
    position: relative;
}

.lead-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(6,182,212,0.35) inset, 0 0 10px rgba(6,182,212,0.5);
    background: radial-gradient(circle, #06b6d4 40%, transparent 41%);
}

.lead-form {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
}

.lead-form .form-group {
    margin-bottom: 0;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.lead-submit {
    width: 100%;
    margin-top: auto;
}

.lead-legal {
    color: #64748b;
    font-size: 0.85rem;
    margin-top: 0.75rem;
    text-align: center;
}

@media (max-width: 1024px) {
    .lead-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        line-height: 1.25;
    }

    .subtitle {
        font-size: 1.05rem;
    }

    .hero-proof-badge {
        padding: 0.85rem 1.15rem;
        font-size: 0.92rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .dashboard-carousel {
        margin: 2rem auto;
        min-width: 280px;
    }

    .carousel-slide {
        padding: 0.5rem;
    }

    .carousel-slide img {
        max-height: 60vh;
    }

    .benefits-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .benefit-pair,
    .benefit-pair:nth-child(even) {
        flex-direction: column;
    }

    .pair-image {
        max-width: 540px;
        margin: 0 auto;
        min-height: 0;
    }
}

/* Responsivo para benefit-pairs - Versão Transformada */
@media (max-width: 1024px) {
    .benefit-pair,
    .benefit-pair:nth-child(even) {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .pair-image {
        min-height: 280px;
    }
}

@media (max-width: 640px) {
    .benefits {
        padding: 4rem 1rem;
    }
    
    .section-subtitle {
        margin-bottom: 3rem;
    }

    .benefit-pairs {
        gap: 3rem;
    }

    .dashboard-carousel {
        margin: 1.5rem auto;
        min-width: 260px;
        border-radius: 12px;
    }

    .carousel-slide {
        padding: 0.25rem;
    }

    .carousel-slide img {
        max-height: 50vh;
        border-radius: 8px;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .benefit-title {
        font-size: 1.3rem;
    }

    .pair-image {
        min-height: 220px;
        padding: 1.5rem;
    }
}

/* Functionalities page: alternating sections */
.feature-hero {
    padding: var(--space-4xl) 2rem var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

/* Logo no topo da página de hero */
.hero-logo-integration {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.page-hero-logo {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(6, 182, 212, 0.5)) drop-shadow(0 0 60px rgba(16, 185, 129, 0.3));
    animation: float 6s ease-in-out infinite;
}

/* Divisória decorativa (similar ao card CTA) */
.hero-divider {
    position: relative;
    width: 100%;
    max-width: 200px;
    height: 3px;
    margin: var(--space-xl) auto 0;
    background: linear-gradient(90deg, transparent, #06b6d4, #10b981, #06b6d4, transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.6);
}

@media (max-width: 768px) {
    .feature-hero {
        padding: 5rem 1.5rem 1.5rem 1.5rem;
    }
    
    .hero-logo-integration {
        margin-bottom: 1.5rem;
    }
    
    .page-hero-logo {
        height: 90px;
    }
    
    .hero-divider {
        max-width: 150px;
        height: 2px;
        margin: 2rem auto 0;
    }

    .setup-highlight {
        padding: 2rem 2rem;
        gap: 1.25rem;
    }

    .setup-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .setup-copy {
        max-width: 100%;
        font-size: 1rem;
    }

    .setup-copy span {
        font-size: 0.95rem;
    }

    .pricing-cta {
        padding: 0 1.25rem 4.5rem;
    }

    .pricing-cta-inner {
        gap: 1.6rem;
        padding: 2.5rem 2rem;
    }

    .pricing-cta-copy h3 {
        font-size: 1.7rem;
    }

    .pricing-cta-copy p {
        font-size: 0.98rem;
    }

    .pricing-cta-actions .btn-primary {
        width: 100%;
    }

    .cta-note {
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .feature-hero {
        padding: 4.5rem 1rem 1rem 1rem;
    }
    
    .page-hero-logo {
        height: 70px;
    }
    
    .hero-divider {
        max-width: 120px;
        margin: 1.5rem auto 0;
    }
}
.feature-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.feature-item {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    --feature-accent: #06b6d4;
    --feature-accent-alt: #14b8a6;
    --feature-accent-soft: rgba(6, 182, 212, 0.15);
    --feature-accent-strong: rgba(6, 182, 212, 0.5);
    --feature-glow: rgba(6, 182, 212, 0.3);
}
.feature-item.theme-indigo {
    --feature-accent: #06b6d4;
    --feature-accent-alt: #14b8a6;
    --feature-accent-soft: rgba(6, 182, 212, 0.15);
    --feature-accent-strong: rgba(6, 182, 212, 0.6);
    --feature-glow: rgba(6, 182, 212, 0.35);
}
.feature-item.theme-emerald {
    --feature-accent: #10b981;
    --feature-accent-alt: #34d399;
    --feature-accent-soft: rgba(16, 185, 129, 0.12);
    --feature-accent-strong: rgba(16, 185, 129, 0.55);
    --feature-glow: rgba(16, 185, 129, 0.22);
}
.feature-item.theme-sky {
    --feature-accent: #14b8a6;
    --feature-accent-alt: #2dd4bf;
    --feature-accent-soft: rgba(20, 184, 166, 0.15);
    --feature-accent-strong: rgba(20, 184, 166, 0.6);
    --feature-glow: rgba(20, 184, 166, 0.35);
}
.feature-item.theme-amber {
    --feature-accent: #059669;
    --feature-accent-alt: #10b981;
    --feature-accent-soft: rgba(5, 150, 105, 0.15);
    --feature-accent-strong: rgba(5, 150, 105, 0.6);
    --feature-glow: rgba(5, 150, 105, 0.35);
}
.feature-item.theme-pink {
    --feature-accent: #0891b2;
    --feature-accent-alt: #06b6d4;
    --feature-accent-soft: rgba(8, 145, 178, 0.15);
    --feature-accent-strong: rgba(8, 145, 178, 0.6);
    --feature-glow: rgba(8, 145, 178, 0.35);
}
/* Generic theme helpers for reuse outside of feature list */
.theme-indigo { --feature-accent: #06b6d4; --feature-accent-alt: #14b8a6; --feature-accent-soft: rgba(6,182,212,0.15); --feature-accent-strong: rgba(6,182,212,0.6); --feature-glow: rgba(6,182,212,0.35); }
.theme-emerald { --feature-accent: #10b981; --feature-accent-alt: #34d399; --feature-accent-soft: rgba(16,185,129,0.15); --feature-accent-strong: rgba(16,185,129,0.6); --feature-glow: rgba(16,185,129,0.35); }
.theme-sky { --feature-accent: #14b8a6; --feature-accent-alt: #2dd4bf; --feature-accent-soft: rgba(20,184,166,0.15); --feature-accent-strong: rgba(20,184,166,0.6); --feature-glow: rgba(20,184,166,0.35); }
.theme-amber { --feature-accent: #059669; --feature-accent-alt: #10b981; --feature-accent-soft: rgba(5,150,105,0.15); --feature-accent-strong: rgba(5,150,105,0.6); --feature-glow: rgba(5,150,105,0.35); }
.theme-pink { --feature-accent: #0891b2; --feature-accent-alt: #06b6d4; --feature-accent-soft: rgba(8,145,178,0.15); --feature-accent-strong: rgba(8,145,178,0.6); --feature-glow: rgba(8,145,178,0.35); }
.feature-item:nth-child(even) .feature-content { order: 2; }
.feature-item:nth-child(even) .feature-media { order: 1; }
.feature-content {
    padding: 0.5rem 0;
}
.feature-content p {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}
.feature-heading {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}
.feature-heading h3 {
    font-size: 1.9rem;
    font-weight: 700;
    margin: 0;
}
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--feature-accent), var(--feature-accent-alt));
    box-shadow: 0 18px 40px var(--feature-glow);
    display: grid;
    place-items: center;
}
.feature-icon svg, .feature-icon span {
    width: 30px;
    height: 30px;
    color: white;
    fill: none;
}
.feature-icon svg path, .feature-icon svg line, .feature-icon svg circle, .feature-icon svg rect {
    stroke: white;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.feature-pill {
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    background: rgba(10, 15, 20, 0.8);
    border: 1px solid var(--feature-accent-strong);
    color: var(--feature-accent);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px var(--feature-glow);
}
.feature-media {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}
.media-card {
    flex: 1 1 100%;
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 1.1rem;
    background: radial-gradient(circle at top left, rgba(10, 15, 20, 0.95) 0%, rgba(10, 15, 20, 0.7) 60%, rgba(10, 15, 20, 0.5) 100%);
    border: 1px solid var(--feature-accent-soft);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}
.media-card::after {
    content: '';
    position: absolute;
    inset: -40% -20% auto auto;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, var(--feature-accent-strong), transparent 70%);
    opacity: 0.45;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.media-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: var(--feature-accent-strong);
    box-shadow: 0 30px 70px var(--feature-glow);
}
.media-card:hover::after {
    opacity: 0.65;
    transform: scale(1.1);
}
.media-card img {
    width: 100%;
    display: block;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.4);
    transition: transform 0.6s ease;
}
.media-card:hover img {
    transform: scale(1.025);
}

/* media grid helper for multiple screenshots */
.media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
.media-grid img { border-radius: 12px; }

.features-advanced {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}
.features-advanced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.adv-card {
    background: linear-gradient(135deg, rgba(10, 15, 20, 0.9), rgba(15, 20, 25, 0.75));
    border: 1px solid rgba(6,182,212,0.3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}
.adv-card:hover {
    border-color: rgba(6,182,212,0.5);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.25);
    transform: translateY(-4px);
}
.adv-card img { width: 100%; display: block; }
.adv-card .adv-content { padding: 1rem 1.2rem 1.5rem 1.2rem; }
.adv-card .adv-title { font-weight: 700; margin-bottom: 0.35rem; }
.adv-card .adv-desc { color: #94a3b8; font-size: 0.95rem; }

/* Advanced cards: compact use-case bullets */
.adv-list {
    margin-top: 0.6rem;
    padding-left: 1.1rem;
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}
.adv-list li { margin: 0.15rem 0; }
.adv-list li::marker { color: #06b6d4; }

.pricing-cta {
    margin: 5rem auto 0;
    padding: 0 2rem 6rem;
}

.pricing-cta-inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3.5rem 3rem;
    display: flex;
    align-items: center;
    gap: 2.75rem;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.15), transparent 60%),
        radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.18), transparent 60%),
        linear-gradient(135deg, rgba(10, 15, 20, 0.85), rgba(15, 20, 25, 0.72));
    border-radius: 28px;
    border: 1px solid rgba(56, 189, 248, 0.35);
    box-shadow: 0 35px 90px rgba(6, 182, 212, 0.15);
    overflow: hidden;
}

.pricing-cta-inner::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(135deg,
        rgba(56, 189, 248, 0.35),
        rgba(16, 185, 129, 0.25),
        rgba(56, 189, 248, 0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.7;
    pointer-events: none;
}

.pricing-cta-inner::after {
    content: '';
    position: absolute;
    inset: 20%;
    border-radius: 35px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.18), transparent 70%);
    filter: blur(30px);
    opacity: 0.8;
    pointer-events: none;
}

.pricing-cta-icon {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.28), rgba(16, 185, 129, 0.22));
    border: 1px solid rgba(56, 189, 248, 0.45);
    font-size: 2.5rem;
    filter: drop-shadow(0 0 25px rgba(56, 189, 248, 0.6));
    z-index: 1;
    animation: float-gentle 6s ease-in-out infinite;
}

.pricing-cta-copy {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: #cbd5e1;
    z-index: 1;
}

.pricing-cta-copy h3 {
    font-size: 2.05rem;
    font-weight: 800;
    background: linear-gradient(135deg, #e2e8f0, #06b6d4 55%, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.pricing-cta-copy p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #94a3b8;
    max-width: 520px;
    margin: 0;
}

.pricing-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.85rem;
    z-index: 1;
}

.pricing-cta-actions .btn-primary {
    min-width: 220px;
    box-shadow: 0 18px 45px rgba(16, 185, 129, 0.35);
}

.cta-note {
    font-size: 0.95rem;
    color: rgba(148, 163, 184, 0.9);
    letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
    .feature-item { grid-template-columns: 1fr; }
    .feature-item:nth-child(even) .feature-content, .feature-item:nth-child(even) .feature-media { order: unset; }
    .showcase-layout { grid-template-columns: 1fr; }
    .pricing-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2.5rem;
        gap: 2rem;
    }
    .pricing-cta-actions {
        align-items: center;
    }
    .pricing-cta-copy p {
        max-width: 100%;
    }
}

.cta-buttons .btn {
    min-width: 200px;
}

.contact-lead {
    padding-top: 0;
}

.contact-form {
    background: linear-gradient(135deg, rgba(10, 15, 20, 0.9), rgba(15, 20, 25, 0.78));
    border: 1px solid rgba(6, 182, 212, 0.35);
    border-radius: 20px;
    padding: var(--space-xl);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.contact-form label {
    display: block;
    color: #cbd5e1;
    font-weight: 600;
    margin-bottom: 0.45rem;
    letter-spacing: 0.01em;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1rem 1.1rem;
    background: rgba(8, 13, 18, 0.86);
    border: 1px solid rgba(6, 182, 212, 0.28);
    border-radius: 12px;
    color: #e2e8f0;
    font-size: 1rem;
    font-family: inherit;
    transition: border 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(148, 163, 184, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: rgba(6, 182, 212, 0.65);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.18);
    background: rgba(10, 17, 24, 0.95);
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, rgba(226, 232, 240, 0.7) 50%),
        linear-gradient(135deg, rgba(226, 232, 240, 0.7) 50%, transparent 50%);
    background-position: calc(100% - 1.1rem) calc(50% - 3px), calc(100% - 0.85rem) calc(50% - 3px);
    background-repeat: no-repeat;
    background-size: 8px 8px, 8px 8px;
}

.contact-form select:focus {
    background-image: linear-gradient(45deg, transparent 50%, #06b6d4 50%),
        linear-gradient(135deg, #06b6d4 50%, transparent 50%);
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form .lead-submit {
    width: 100%;
}

.contact-form .lead-legal {
    margin-top: 0.5rem;
}

@media (max-width: 900px) {
    .contact-form .form-row-2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

label {
    display: block;
    color: #cbd5e1;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

input,
textarea,
select {
    width: 100%;
    padding: 1rem 1.05rem;
    background: rgba(8, 13, 18, 0.82);
    border: 1px solid rgba(6, 182, 212, 0.25);
    border-radius: 12px;
    color: #e2e8f0;
    font-size: 1rem;
    font-family: inherit;
    transition: border 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

input::placeholder,
textarea::placeholder {
    color: rgba(148, 163, 184, 0.7);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: rgba(6, 182, 212, 0.6);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.16);
    background: rgba(10, 17, 24, 0.94);
}

/* Footer - centralizado em todas as páginas */
footer {
    text-align: center;
    padding: var(--space-xl) var(--space-sm);
    margin-top: var(--space-4xl);
    border-top: 1px solid rgba(6, 182, 212, 0.12);
}
footer p {
    margin: 0;
    color: #94a3b8;
    font-size: 0.9rem;
}
footer p + p {
    margin-top: 0.5rem;
}
.footer-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    color: rgba(6, 182, 212, 0.95);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.footer-tagline::before,
.footer-tagline::after {
    content: '';
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.5));
}
.footer-tagline::after {
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.5), transparent);
}

/* Pricing cards - sublistas de faixas (Nível 1 e 2) */
.pricing-tiers {
    list-style: none;
    margin: 0.5rem 0 1rem;
    padding: 0;
    font-size: 0.9rem;
    color: #94a3b8;
}
.pricing-tiers li {
    padding: 0.2rem 0;
    padding-left: 1rem;
    position: relative;
}
.pricing-tiers li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(6, 182, 212, 0.7);
}
.pricing-note {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 0.5rem;
}

