/* ========== BOOTSTRAP MINIMAL (grid + utilities) ========== */
.container{width:100%;padding-right:12px;padding-left:12px;margin-right:auto;margin-left:auto}
@media(min-width:576px){.container{max-width:540px}}
@media(min-width:768px){.container{max-width:720px}}
@media(min-width:992px){.container{max-width:960px}}
@media(min-width:1200px){.container{max-width:1140px}}
.row{display:flex;flex-wrap:wrap;margin-right:-12px;margin-left:-12px}
.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:12px;padding-left:12px}
.g-4{--bs-gutter-x:1.5rem;--bs-gutter-y:1.5rem}
.g-4>*{padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-top:var(--bs-gutter-y)}
.g-4{margin-top:calc(-1*var(--bs-gutter-y))}
.col-6{flex:0 0 auto;width:50%}
.col-12{flex:0 0 auto;width:100%}
@media(min-width:768px){.col-md-6{flex:0 0 auto;width:50%}}
@media(min-width:992px){.col-lg-3{flex:0 0 auto;width:25%}}
.d-flex{display:flex}
.align-items-center{align-items:center}
.justify-content-center{justify-content:center}
.flex-wrap{flex-wrap:wrap}
.gap-3{gap:1rem}
.text-center{text-align:center}
.text-start{text-align:left}
.mb-2{margin-bottom:.5rem}
.mb-3{margin-bottom:1rem}
.mb-5{margin-bottom:3rem}

/* ========== RESET & BASE ========== */
:root {
    --bg: #000000;
    --fg: #fafafa;
    --primary: #26a641;
    --primary-light: #59F370;
    --primary-dark: #158828;
    --secondary: #4e2783;
    --secondary-light: #7c3aed;
    --destructive: #ef4444;
    --muted: #a0a0a8;
    --card-bg: #131315;
    --border-color: #272729;
    --marquee-gradient: linear-gradient(0.25turn, rgba(36,166,85), rgba(36,166,85), rgba(78,39,131), rgba(78,39,131));
}

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

body {
    background-color: var(--bg);
    color: var(--fg);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ========== LAYOUT ========== */
.section-content {
    position: relative;
    z-index: 2;
}

.section-header-wrap {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.content-grid {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.content-narrow {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.plans-grid {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-list {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== CTA BUTTONS ========== */
button.cta, a.cta {
    clear: both;
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 15px 75px;
    margin: 35px auto 0 auto;
    border: none;
    background: linear-gradient(106deg, #59F370 1.19%, #158828 89.9%);
    box-shadow: 0px 0px 111px 0px #43D059;
    border-radius: 200px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    letter-spacing: 0.5px;
}

button.cta:hover, a.cta:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 150px 0px #43D059;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 0;
}

.header .logo {
    height: 32px;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-bg .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(78,39,131,0.3) 0%, rgba(0,0,0,1) 60%);
}

.hero-bg .grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(38,166,65,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(38,166,65,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 .highlight {
    color: var(--primary);
    animation: glow-text 3s ease-in-out infinite;
}

.hero .subheadline {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.hero-stats .stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.hero-stats .stat-label {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 4px;
}

.hero-mockup {
    margin-top: 60px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transform: translateY(80px);
    will-change: transform;
    transition: transform 0.1s linear;
    box-shadow:
        0 0 60px rgba(36,166,85,0.2),
        0 0 120px rgba(36,166,85,0.1),
        0 0 60px rgba(78,39,131,0.15),
        0 0 120px rgba(78,39,131,0.08);
}

.hero-mockup .fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

/* ========== PAIN / PROBLEMA ========== */
.pain {
    padding: 75px 0 35px 0;
    position: relative;
}

.pain .section-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(239,68,68,0.03), transparent);
    pointer-events: none;
}

/* Shared .tag style (all sections) */
.tag {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    display: block;
    margin-bottom: 16px;
}

/* Shared color utilities */
.text-green { color: var(--primary); }
.text-red { color: var(--destructive); }

.pain .tag {
    color: var(--destructive);
}

.pain h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.pain .subtitle {
    font-size: 1.1rem;
    color: var(--muted);
}

.pain .subtitle strong {
    color: var(--fg);
}

.pain-card {
    background: var(--card-bg);
    border: 1px solid rgba(239,68,68,0.1);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: border-color 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pain-card:hover {
    border-color: rgba(239,68,68,0.3);
}

.pain-card .icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(239,68,68,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.pain-card .icon-wrap svg {
    width: 24px;
    height: 24px;
    stroke: var(--destructive);
}

.pain-card p {
    font-size: 0.9rem;
    color: var(--muted);
}

/* Marquee */
.marquee-wrap {
    overflow: hidden;
    margin-top: 50px;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: marquee 90s linear infinite;
    will-change: transform;
}

.marquee-track span {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 0;
    flex-shrink: 0;
    background: var(--marquee-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== SOLUCAO / COMO FUNCIONA ========== */
.solution {
    padding: 75px 0;
    position: relative;
    overflow: hidden;
}

.solution .section-bg {
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse 60% 40% at 20% 50%, rgba(36,166,85,0.25) 0%, transparent 70%),
        radial-gradient(ellipse 50% 45% at 80% 50%, rgba(78,39,131,0.22) 0%, transparent 70%),
        radial-gradient(ellipse 70% 35% at 50% 80%, rgba(36,166,85,0.18) 0%, transparent 70%);
    pointer-events: none;
    animation: glow-wave 8s ease-in-out infinite alternate;
}

@keyframes glow-wave {
    0% {
        transform: translate(-5%, -3%) rotate(-2deg) scale(1);
        opacity: 0.8;
    }
    33% {
        transform: translate(3%, 2%) rotate(1deg) scale(1.03);
        opacity: 1;
    }
    66% {
        transform: translate(-2%, 4%) rotate(-1deg) scale(0.98);
        opacity: 0.9;
    }
    100% {
        transform: translate(4%, -2%) rotate(2deg) scale(1.02);
        opacity: 1;
    }
}

.solution h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.solution .subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px 24px;
    height: 100%;
    position: relative;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    border-color: rgba(38,166,65,0.4);
    box-shadow: 0 0 40px rgba(38,166,65,0.1);
}

.step-card .step-number {
    position: absolute;
    top: 12px;
    right: 18px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(38,166,65,0.15);
    line-height: 1;
}

.step-card .icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: rgba(38,166,65,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-card .icon-wrap svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--muted);
}

/* ========== RECURSOS / FEATURES ========== */
.features {
    padding: 75px 0;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px 22px;
    height: 100%;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    border-color: rgba(38,166,65,0.3);
    box-shadow: 0 0 30px rgba(38,166,65,0.08);
}

.feature-card .icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(38,166,65,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background-color 0.3s;
}

.feature-card:hover .icon-wrap {
    background: rgba(38,166,65,0.2);
}

.feature-card .icon-wrap svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--muted);
}

/* ========== BENEFICIOS ========== */
.benefits {
    padding: 75px 0;
    position: relative;
    overflow: hidden;
}

.benefits h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.benefits .desc {
    color: var(--muted);
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.benefit-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.benefit-item span {
    font-size: 1rem;
}

/* Circulo animado 37% */
.benefit-visual {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    aspect-ratio: 1;
}

.benefit-visual .circle {
    position: absolute;
    border-radius: 50%;
}

.benefit-visual .circle-1 {
    inset: 0;
    background: linear-gradient(230deg, rgba(36,166,85,0.08) 10%, rgba(78,39,131,0.08) 90%);
    border: 1px solid rgba(36,166,85,0.08);
    animation: pulse-ring-1 4s ease-in-out infinite;
}

.benefit-visual .circle-2 {
    inset: 32px;
    background: linear-gradient(230deg, rgba(36,166,85,0.12) 10%, rgba(78,39,131,0.12) 90%);
    border: 1px solid rgba(36,166,85,0.12);
    animation: pulse-ring-2 4s ease-in-out infinite 0.6s;
}

.benefit-visual .circle-3 {
    inset: 64px;
    background: linear-gradient(230deg, rgba(36,166,85,0.18) 10%, rgba(78,39,131,0.18) 90%);
    border: 1px solid rgba(36,166,85,0.18);
    animation: pulse-ring-3 4s ease-in-out infinite 1.2s;
}

.benefit-visual .center-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.benefit-visual .big-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.benefit-visual .big-label {
    color: var(--muted);
    font-size: 1.1rem;
    margin-top: 8px;
    text-align: center;
    max-width: 80%;
}

/* ========== PLANOS ========== */
.plans {
    padding: 75px 0;
    position: relative;
    overflow: hidden;
}

.plans .section-bg {
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse 60% 40% at 20% 50%, rgba(36,166,85,0.30) 0%, transparent 70%),
        radial-gradient(ellipse 50% 45% at 80% 50%, rgba(78,39,131,0.28) 0%, transparent 70%),
        radial-gradient(ellipse 70% 35% at 50% 80%, rgba(36,166,85,0.22) 0%, transparent 70%);
    pointer-events: none;
    animation: glow-wave 8s ease-in-out infinite alternate;
}

.plans h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

/* Stack de valor */
.value-stack {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    max-width: 600px;
    margin: 0 auto 50px;
}

.value-stack h3 {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 24px;
}

.value-stack h3 svg {
    vertical-align: middle;
    margin-right: 8px;
}

.value-stack .stack-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(39,39,41,0.5);
}

.value-stack .stack-row:last-of-type {
    border-bottom: none;
}

.value-stack .stack-item {
    font-size: 0.9rem;
    color: var(--muted);
}

.value-stack .stack-value {
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: line-through;
    opacity: 0.6;
}

.value-stack .total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid rgba(38,166,65,0.2);
}

.value-stack .total-label {
    font-weight: 700;
    font-size: 1rem;
}

.value-stack .total-value {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--destructive);
    text-decoration: line-through;
}

/* Cards de plano */
.plan-card {
    background: rgba(0,20,0,0.5);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.plan-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 0 60px rgba(38,166,65,0.15);
}

.plan-card .badge-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 16px;
    border-radius: 200px;
}

.plan-card .plan-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.plan-card .plan-icon.starter-icon {
    background: rgba(78,39,131,0.2);
}

.plan-card .plan-icon.starter-icon svg {
    stroke: var(--secondary-light);
}

.plan-card .plan-icon.pro-icon {
    background: rgba(38,166,65,0.2);
}

.plan-card .plan-icon.pro-icon svg {
    stroke: var(--primary);
}

.plan-card h3 {
    font-size: 1.6rem;
    margin-bottom: 2px;
}

.plan-card .plan-icon.starter-icon ~ div h3 {
    color: var(--secondary-light);
}

.plan-card .plan-icon.pro-icon ~ div h3 {
    color: var(--primary);
}

.plan-card .plan-subtitle {
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 0;
}

.plan-card .price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.plan-card .price .period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted);
}

.plan-card .price.green {
    color: var(--primary);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.875rem;
    color: var(--muted);
}

.plan-features li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.plan-features li svg.check {
    stroke: var(--primary);
}

.plan-features li svg.x-icon {
    stroke: var(--muted);
}

.plan-features li.disabled {
    opacity: 0.4;
}

.plan-card .cta {
    font-size: 16px;
    padding: 15px 15px;
}

.plan-card.featured .pro-header {
    margin-top: 8px;
}

/* Tabela comparativa */
.comparison-table {
    max-width: 700px;
    margin: 50px auto 0;
}

.comparison-table table {
    width: 100%;
    font-size: 0.875rem;
}

.comparison-table th {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
    color: var(--muted);
}

.comparison-table th.col-pro {
    color: var(--primary);
    font-weight: 700;
}

.comparison-table td {
    padding: 12px 0;
    border-bottom: 1px solid rgba(39,39,41,0.5);
}

.comparison-table td:first-child {
    color: var(--fg);
}

.comparison-table td.center {
    text-align: center;
    color: var(--muted);
}

.comparison-table td.center.green {
    color: var(--primary);
    font-weight: 500;
}

/* ========== FAQ ========== */
.faq {
    padding: 75px 0;
    background: #000000;
}

.faq h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--fg);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
}

.faq-item .faq-question svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

.faq-item .faq-answer p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ========== CTA FINAL ========== */
.cta-final {
    padding: 75px 0;
    position: relative;
    overflow: hidden;
}

.particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-final-inner {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final-icon {
    margin-bottom: 24px;
}

.cta-final .text-muted {
    color: var(--muted) !important;
    font-size: 1.1rem;
}

.cta-pulse {
    animation: pulse-neon 3s ease-in-out infinite;
}

.cta-final .text-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.cta-final .disclaimer {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 24px;
}

/* ========== FOOTER ========== */
.footer {
    border-top: 2px solid transparent;
    border-image: linear-gradient(0.25turn, rgba(36,166,85,1), rgba(36,166,85,0.6), rgba(78,39,131,0.6), rgba(78,39,131,1));
    border-image-slice: 1;
    padding: 60px 0 0;
    background: var(--bg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand img {
    clear: both;
    display: block;
    width: 50%;
    height: auto;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
    max-width: 280px;
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    color: var(--muted);
    transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.footer-social a:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(38,166,65,0.08);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--fg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 0.875rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-secure {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 500;
}

.footer-secure svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary);
}

.footer-hotmart {
    margin-top: 4px;
}

.footer-hotmart img {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.5;
}

.footer-bottom {
    margin-top: 48px;
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.6;
}

.footer-bottom p + p {
    margin-top: 8px;
    font-size: 0.7rem;
    opacity: 0.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== ANIMACOES ========== */
@keyframes glow-text {
    0%, 100% { text-shadow: 0 0 10px rgba(38,166,65,0.3); }
    50% { text-shadow: 0 0 30px rgba(38,166,65,0.6); }
}

@keyframes pulse-neon {
    0%, 100% { box-shadow: 0 0 20px rgba(38,166,65,0.3); }
    50% { box-shadow: 0 0 80px rgba(38,166,65,0.6); }
}

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

@keyframes pulse-ring-2 {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.06); opacity: 0.5; }
}

@keyframes pulse-ring-3 {
    0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 rgba(36,166,85,0); }
    50% { transform: scale(1.08); opacity: 0.55; box-shadow: 0 0 40px rgba(36,166,85,0.1); }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Animate on scroll - elementos aparecem ao entrar na viewport */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: rgba(38,166,65,0.3); border-radius: 3px; }

/* ========== RESPONSIVO ========== */
@media (max-width: 700px) {

    /* Sections padding global */
    .pain, .solution, .features, .benefits, .plans, .faq, .cta-final {
        padding: 50px 0;
    }

    /* Hero */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero .subheadline {
        font-size: 1rem;
    }
    .hero-stats {
        gap: 10px;
        flex-wrap: nowrap;
        justify-content: center;
        margin: 25px auto 0 auto;
    }
    .hero-stats .text-center {
        width: 29%;
    }
    .hero-stats .stat-number {
        font-size: 1.4rem;
    }
    .hero-mockup {
        margin-top: 40px;
    }
    .hero button.cta {
        font-size: 16px;
        padding: 14px 40px;
    }

    /* Pain */
    .pain h2 {
        font-size: 1.7rem;
    }
    .pain .subtitle {
        font-size: 0.95rem;
    }
    .marquee-track span {
        font-size: 1rem;
        margin: 0 16px;
    }

    /* Solution */
    .solution h2 {
        font-size: 1.7rem;
    }
    .solution .subtitle {
        font-size: 0.95rem;
    }

    /* Features */
    .features h2 {
        font-size: 1.7rem;
        margin-bottom: 30px;
    }
    .features .col-6 {
        width: 100%;
    }

    /* Benefits */
    .benefits h2 {
        font-size: 1.7rem;
    }
    .benefit-visual {
        max-width: 280px;
        margin-top: 40px;
    }
    .benefit-visual .big-number {
        font-size: 3rem;
    }
    .benefit-visual .big-label {
        font-size: 14px;
    }

    /* Plans */
    .plans h2 {
        font-size: 1.7rem;
        margin-bottom: 30px;
    }
    .plan-card {
        padding: 24px;
    }
    .plan-card:not(.featured) {
        margin-bottom: 35px;
    }
    .value-stack {
        padding: 24px;
    }
    .comparison-table {
        overflow-x: auto;
    }

    /* FAQ */
    .faq h2 {
        font-size: 1.7rem;
    }
    .faq-item .faq-question {
        font-size: 0.9rem;
        padding: 16px 20px;
    }

    /* CTA Final */
    .cta-final h2 {
        font-size: 1.7rem;
    }
    /* CTAs globais */
    button.cta, a.cta {
        font-size: 16px;
        padding: 15px 30px;
    }
    /* Footer */
    .footer {
        padding: 40px 0 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .footer-brand {
        align-items: center;
    }
    .footer-brand img {
        width: 30%;
        margin: 0 auto;
    }
    .footer-tagline {
        max-width: 100%;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-col {
        align-items: center;
    }
    .footer-hotmart {
        text-align: center;
    }
    .footer-secure {
        justify-content: center;
    }
    .footer-bottom {
        margin-top: 32px;
        padding: 20px 0;
    }
}