html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

:root {
    --bg-dark: #020617;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);
    --primary: #f97316;
    --primary-hover: #ea580c;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --gradient-main: radial-gradient(circle at top center, #1e293b 0%, #020617 100%);
    --shadow-glow: 0 0 20px rgba(249, 115, 22, 0.15);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    color: #fff;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.text-orange {
    color: var(--primary);
    font-weight: 700;
}

section {
    padding: 80px 0;
    width: 100%;
    position: relative;
}

/* VIDEO / VSL PLACEHOLDER */
.video-section {
    padding: 0px 0 40px 0;
    background: var(--gradient-main);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-section .container{
    padding: 0;
}

.vsl-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.vsl-placeholder {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16/9;
    margin: 0 auto;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border: 2px dashed rgba(249, 115, 22, 0.4);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-align: center;
    padding: 20px;
}

.vsl-placeholder .play {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.5);
}

.vsl-placeholder .play::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 22px solid #fff;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    margin-left: 6px;
}

.vsl-placeholder small {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 8px;
}

/* HERO STATEMENT */
.hero-statement {
    background-color: var(--bg-dark);
    padding: 40px 0 20px;
}

.statement-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0 auto 30px;
    letter-spacing: -1px;
    max-width: 900px;
}

.pill-highlight {
    display: inline-block;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.1));
    border: 2px solid #ef4444;
    border-radius: 50px;
    padding: 8px 30px;
    color: #fff;
    font-weight: 900;
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
    margin-top: 15px;
    font-size: 2.8rem;
    line-height: 1;
}

.statement-sub {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 auto 40px;
    line-height: 1.4;
    max-width: 850px;
}

.hero-simple-copy {
    max-width: 1000px;
    margin: 40px auto 0;
}

.hero-copy-main,
.hero-copy-sub {
    color: #cbd5e1;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.highlight-bg {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(234, 88, 12, 0.2));
    padding: 2px 10px;
    border-radius: 6px;
    border-bottom: 2px solid var(--primary);
    color: #fff;
    font-weight: 700;
}

.hero-social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 80px auto 60px;
    max-width: 1100px;
}

.hero-grid-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.hero-grid-row img,
.hero-social-proof>img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.8);
}

.hero-social-proof>img {
    max-width: 600px;
}

/* CTA */
.cta-green {
    background: linear-gradient(135deg, #22c55e, #15803d);
    color: #fff;
    font-size: 1.3rem;
    padding: 22px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    display: block;
    width: 100%;
    text-transform: uppercase;
    margin-top: 30px;
    border: 1px solid #4ade80;
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.4);
    transition: all 0.3s ease;
    text-align: center;
    animation: pulse 1.5s infinite;
}

    @keyframes pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
      }

      70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(34, 197, 94, 0);
      }

      100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
      }
    }

.cta-green:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.6);
}

.cta-premium {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    padding: 24px 48px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.5rem;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(234, 88, 12, 0.3);
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-premium:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(234, 88, 12, 0.4);
}

/* FEATURES */
.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.feature-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-item:last-child {
    border-bottom: none;
}

.check-icon {
    min-width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.feature-text {
    font-size: 1.1rem;
    color: #e2e8f0;
    font-weight: 600;
    line-height: 1.6;
}

.features-image {
    text-align: center;
}

.mockup-img {
    max-width: 100%;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
    border-radius: 24px;
}

/* LEAD */
.lead-box {
    background: #fff;
    border-radius: 24px;
    padding: 60px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.proof-images-grid-2-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.proof-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.proof-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* SECTION TITLE */
.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* STEPS */
.steps-section {
    background-color: #0b1121;
    color: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.step-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--primary);
}

.step-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(234, 88, 12, 0.1));
    color: var(--primary);
    font-weight: 900;
    font-size: 0.9rem;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(249, 115, 22, 0.4);
}

.step-title {
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 25px;
    min-height: 3.5rem;
    color: #0f172a;
    line-height: 1.3;
}

.step-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    background-color: #1e293b;
}

.step-content {
    text-align: left;
    margin-top: 20px;
}

.step-intro {
    font-size: 1rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 12px;
}

/* COMPARISON */
.comparison-section {
    background-color: var(--bg-dark);
}

.comparison-table {
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(249, 115, 22, 0.2);
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.2fr 2fr 1.8fr;
    border-bottom: 1px solid rgba(249, 115, 22, 0.1);
}

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

.comparison-header {
    background: linear-gradient(135deg, #f97316, #ea580c);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    color: #fff;
    padding: 20px 0;
    border-radius: 12px 12px 0 0;
    margin: -40px -40px 20px;
}

.comparison-header .comparison-col {
    padding: 0 20px;
}

.comparison-bad {
    background: rgba(249, 115, 22, 0.02);
}

.comparison-col {
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comparison-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.4;
}

.comparison-result {
    font-size: 1rem;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 8px;
    background: #fee2e2;
    border: 2px solid #ef4444;
    color: #991b1b;
}

.chevron svg{
    color: #ef4444;
    width: 55px;
    height: 55px;
    margin: 28px 0 15px 0px;
    transition: 0.3s ease;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      }

      40% {
        transform: translateY(10px);
      }

      60% {
        transform: translateY(5px);
      }
    }
    


.icon-caminho {
    color: #cbd5e1;
    flex-shrink: 0;
}

/* COMPARISON FOOTER BANNER */
.comparison-footer-banner {
    margin: 60px auto 0;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 32px;
    padding: 60px 40px;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -1px;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.banner-point {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.banner-point:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.point-check {
    width: 44px;
    height: 44px;
    background: #fff7ed;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
}

.point-text {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.point-text strong {
    color: var(--primary);
    display: block;
    font-size: 1.2rem;
    margin-top: 4px;
}

.point-description {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* EXAMPLES */
.examples-section {
    background-color: var(--bg-dark);
}

.examples-box {
    background: #fff;
    border-radius: 24px;
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.examples-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.example-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.example-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.example-icon {
    width: 50px;
    height: 50px;
    background: #fff7ed;
    border: 1px solid #ffedd5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
}

.example-card h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.example-card p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 20px;
    flex-grow: 1;
}

.example-demo-img {
    width: 100%;
    border-radius: 12px;
}

/* TESTIMONIAL */
.testimonial-section {
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-glass);
}

.testimonial-box {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.testimonial-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.5), transparent);
}

.testimonial-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.3;
}

.testimonial-description {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-description strong {
    color: #fff;
}

.testimonial-video {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.testimonial-video img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* BONUS */
.bonus-section {
    background-color: #0b1121;
    padding-bottom: 80px;
}

.bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.bonus-header {
    background: linear-gradient(180deg, #1e293b, #0f172a);
    color: #fff;
    padding: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border-glass);
}

.bonus-body {
    background-color: #fff;
    padding: 30px;
    color: #1e293b;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bonus-price-bar {
    background-color: #B91C1C;
    color: #fff;
    padding: 15px;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    width: 100%;
}

/* WORTH IT */
.worth-it-box {
    background: #fff;
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    overflow: hidden;
    max-width: 800px;
    margin: 40px auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.worth-it-content {
    padding: 40px;
}

.worth-it-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.q-icon {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.worth-it-text h4 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 12px;
    font-weight: 700;
    color: #020617;
}

.worth-it-text p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
}

.worth-it-highlight {
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 900;
    margin-top: 15px;
    display: block;
    text-transform: uppercase;
}

.orange-footer-bar {
    background: linear-gradient(90deg, #ea580c, #c2410c);
    color: #fff;
    padding: 30px;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* OFFER */
.offer-section {
    background-color: var(--bg-dark);
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid var(--border-glass);
}

.offer-box {
    background: #00000000;
    border: 1px solid var(--primary);
    border-radius: 12px;
    padding: 40px 30px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.15);
}

.stack-image {
    width: 100%;
    max-width: 500px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
}

.offer-headline {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 40px;
    line-height: 1.3;
    color: #fff;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    text-align: left;
}

.offer-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
}

.offer-item:last-child {
    border-bottom: none;
}

.item-name {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #f1f5f9;
}

.item-check {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
}

.item-value {
    font-weight: 700;
    color: #94a3b8;
    font-size: 0.95rem;
}

.price-anchor {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 5px;
}

.scratched-price {
    text-decoration: line-through;
    color: #ef4444;
    opacity: 0.8;
    font-weight: 600;
}

.big-price {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    margin: 15px 0;
    letter-spacing: -2px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.big-price small {
    font-size: 2.2rem;
    font-weight: 600;
    color: #cbd5e1;
}

/* INSTRUCTOR */
.instructor-section {
    background: linear-gradient(180deg, #020617, #172554);
    padding: 100px 0;
    border-top: 1px solid var(--border-glass);
}

.instructor-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.instructor-content {
    text-align: left;
}

.instructor-title {
    font-size: 2.2rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.instructor-title strong {
    font-weight: 900;
    color: var(--primary);
}

.instructor-text {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
    max-width: 650px;
}

.instructor-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    display: block;
    border: 1px solid var(--border-glass);
}

/* GUARANTEE */
.guarantee-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.guarantee-box-premium {
    background: #fff;
    border-radius: 20px;
    padding: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    text-align: left;
    border: 1px solid var(--border-glass);
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3);
}

.guarantee-seal {
    width: 240px;
    height: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
}

.guarantee-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #431407;
}

.guarantee-content p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 16px;
}

.guarantee-content strong {
    color: #020617;
    display: block;
    margin-top: 20px;
    font-size: 1.05rem;
}

/* FAQ */
.faq-section {
    background-color: var(--bg-dark);
    padding: 80px 0;
    border-top: 1px solid var(--border-glass);
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.faq-question {
    padding: 20px;
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 300;
    transition: transform 0.3s;
}

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

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    color: var(--text-muted);
    line-height: 1.6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* CLOSING */
.closing-section {
    background-color: var(--bg-dark);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-glass);
}

.closing-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.closing-box {
    background: #fff;
    border-radius: 24px;
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}

.closing-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #020617;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
}

.paths-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.path-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.path-card.active {
    border-color: var(--primary);
    background: #fff7ed;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.1);
    transform: scale(1.02);
}

.path-num {
    font-size: 0.8rem;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.path-card.active .path-num {
    color: var(--primary);
}

.path-text {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #475569;
}

.path-card.active .path-text {
    color: #0f172a;
    font-weight: 600;
}

.closing-punchline {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.punchline-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
    line-height: 1.4;
}

.punchline-highlight {
    color: var(--primary);
    display: block;
    font-size: 2rem;
    font-weight: 900;
    margin-top: 10px;
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}

/* IA PROMO BOX (Sem ideias?) */
.examples-promo {
    margin-top: 60px;
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    border: 2px solid var(--primary);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.15);
}

.examples-promo .emoji {
    font-size: 3rem;
    margin-bottom: 15px;
}

.examples-promo h3 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.examples-promo p {
    font-size: 1.2rem;
    color: #334155;
    margin-bottom: 15px;
}

.examples-promo .pill {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), #ea580c);
    color: #fff;
    padding: 6px 16px;
    border-radius: 8px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.4);
}

.examples-promo .small {
    font-size: 1.05rem;
    color: #64748b;
    margin-top: 20px;
    font-style: italic;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 15px;
    display: inline-block;
}

.examples-promo strong {
    color: var(--primary);
}

/* STICKY CTA */
.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 20px;
    z-index: 9999;
    box-shadow: 0 -4px 30px rgba(249, 115, 22, 0.12);
    transition: bottom 0.4s ease-in-out;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
}

.sticky-cta.visible {
    bottom: 0;
}

.cta-pulse {
    background: linear-gradient(135deg, #22c55e, #15803d);
    color: #fff;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    border: 1px solid #4ade80;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.35);
    animation: stickyPulse 2s infinite;
    text-align: center;
    width: 90%;
    max-width: 460px;
    display: block;
}

@keyframes stickyPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .features-grid,
    .testimonial-box,
    .steps-grid,
    .examples-grid,
    .paths-container,
    .instructor-grid {
        grid-template-columns: 1fr;
    }

    .comparison-row {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .comparison-col {
        padding: 15px 20px;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .comparison-header .comparison-col:not(:first-child) {
        display: none;
    }

    .banner-points {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-grid-row {
        grid-template-columns: 1fr;
    }

    .examples-box,
    .lead-box {
        padding: 40px 25px;
    }

    .guarantee-box-premium {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
    }
}

@media (max-width: 768px) {
    .statement-title {
        font-size: 2.2rem;
    }

    .pill-highlight {
        font-size: 1.6rem;
        padding: 5px 20px;
        white-space: normal;
        border-radius: 20px;
    }

    .statement-sub {
        font-size: 1.2rem;
    }

    .hero-copy-main,
    .hero-copy-sub {
        font-size: 1.05rem;
    }

    .big-price {
        font-size: 3.5rem;
    }

    .orange-footer-bar {
        font-size: 1.6rem;
        padding: 20px;
    }

    .worth-it-highlight {
        font-size: 1.3rem;
    }

    .closing-title,
    .examples-title,
    .banner-title,
    .faq-title {
        font-size: 1.7rem;
    }

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

}

/* SUPPORT SECTION */
.support-section {
    background-color: var(--bg-dark);
    padding: 80px 0;
    border-top: 1px solid var(--border-glass);
}

.support-card {
    background: rgba(249, 115, 22, 0.05);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.08);
}

.support-eyebrow {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.support-title {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.support-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 30px;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #22c55e, #15803d);
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 18px 36px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid #4ade80;
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.support-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.6);
    color: #fff;
}

/* SITE FOOTER */
.site-footer {
    background-color: var(--bg-dark);
    padding: 28px 0 90px;
    text-align: center;
    border-top: 1px solid var(--border-glass);
}

.footer-company {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.footer-company strong {
    color: var(--text-main);
    font-weight: 800;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 0.75;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .support-card {
        padding: 40px 25px;
    }

    .support-title {
        font-size: 1.6rem;
    }

    .support-btn {
        font-size: 0.95rem;
        padding: 16px 24px;
        width: 100%;
        justify-content: center;
    }

    .site-footer {
        padding-bottom: 100px;
    }
    .proof-images-grid-2-cols {
        grid-template-columns: auto;
    }
    .worth-it-text h4 {
        font-size: 1.1rem;
    }
    .punchline-highlight {
        font-size: 1.7rem;
    }
    .cta-premium {
        font-size: 1.2rem;
    }
}