/* Design System & Reset */
:root {
    /* Colors */
    --bg-dark: #050505;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    
    --orange-primary: #ff6b00;
    --orange-light: #ff8c00;
    --orange-dark: #cc5500;
    --orange-glow: rgba(255, 107, 0, 0.3);
    
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --text-light-gray: #e0e0e0;
    
    --green-success: #22c55e;
    --red-alert: #ef4444;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-sm {
    max-width: 800px;
}

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

/* Base Components */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.glass-effect-strong {
    background: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Typography Classes */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 3rem;
    line-height: 1.2;
}

.highlight-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 var(--orange-glow); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(255, 107, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* CTA Button */
.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(255, 107, 0, 0.3);
    background: linear-gradient(135deg, var(--orange-light), var(--orange-primary));
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-gray);
    flex-wrap: wrap;
}

.cta-trust .divider {
    color: #333;
}

/* =========================================
   SESSÃO 1: HERO
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-dark);
    background-image: url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.4418905961856937.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    padding: 4rem 0;
    overflow: hidden;
}

/* Overlay dark gradient to ensure text readability on smaller screens if background shifts */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, rgba(5,5,5,1) 0%, rgba(5,5,5,0.8) 50%, rgba(5,5,5,0) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-video-desktop {
    flex: 1;
    max-width: 550px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border: 1px solid rgba(255, 107, 0, 0.4);
    background: #000;
}

/* Badge */
.badge-wrapper {
    margin-bottom: 1.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid var(--orange-primary);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-white);
    background: rgba(255, 107, 0, 0.1);
}

.badge .icon {
    color: var(--orange-primary);
}

/* Headlines */
.headline {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.headline .white-text {
    color: var(--text-white);
}

.headline .orange-text {
    color: var(--orange-primary);
    display: inline-block;
    position: relative;
}

.sub-headline {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2.5rem;
}

.sub-headline .white-text-sm {
    font-size: 1.5rem;
    font-weight: 600;
}

.sub-headline .orange-text-large {
    font-size: 3rem;
    font-weight: 900;
    color: var(--orange-primary);
}

/* Benefits Grid in Hero */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.benefit-item p {
    font-size: 0.85rem;
    line-height: 1.2;
    font-weight: 500;
    color: var(--text-light-gray);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.benefit-icon.bg-orange {
    background-color: var(--orange-primary);
    color: white;
}

.benefit-icon.text-orange {
    border: 1px solid var(--orange-primary);
    color: var(--orange-primary);
}

/* Social Proof */
.social-proof-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 12px 20px;
    border-radius: 100px;
    display: inline-flex;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    margin-left: -12px;
}
.avatars img:first-child { margin-left: 0; }

.rating-info {
    display: flex;
    flex-direction: column;
}

.rating-info .stars {
    color: #fbbf24; /* Yellow */
    font-size: 1rem;
    letter-spacing: 2px;
}

.rating-info p {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light-gray);
}

.rating-info .green-text {
    color: var(--green-success);
    font-weight: 700;
}

/* =========================================
   SESSÃO 2: VÍDEO
   ========================================= */
.video-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0a0a 100%);
}

.video-section .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 107, 0, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?auto=format&fit=crop&w=1200&q=80') center/cover;
}

.video-placeholder::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
}

.play-button {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    background: var(--orange-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.video-placeholder p {
    position: relative;
    z-index: 2;
    font-family: var(--font-heading);
    font-weight: 600;
}

/* =========================================
   SESSÃO 2.5: O QUE VAI DESCOBRIR
   ========================================= */
.discover-section {
    position: relative;
    padding: 5rem 0 3rem;
    background-color: var(--bg-dark);
    background-image: url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.9250714452961324.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    overflow: hidden;
}

.discover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(90deg, rgba(5,5,5,1) 0%, rgba(5,5,5,0.9) 40%, rgba(5,5,5,0) 100%);
    z-index: 1;
}

.discover-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.discover-text {
    max-width: 550px;
}

.discover-headline {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.discover-headline .white-text {
    color: var(--text-white);
}

.discover-headline .orange-text {
    color: var(--orange-primary);
}

.discover-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 3rem;
}

.d-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.d-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.d-text {
    font-size: 1.15rem;
    line-height: 1.4;
    color: var(--text-light-gray);
}

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

.safety-box-discover {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.25);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.safety-icon-glow {
    filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.4));
}

.safety-info h3 {
    color: var(--green-success);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.safety-info p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.4;
}

/* =========================================
   SESSÃO 3: PROBLEMA
   ========================================= */
.problem-section {
    position: relative;
    padding: 5rem 0 6rem;
    background-color: var(--bg-dark);
    background-image: url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.617820073641405.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    overflow: hidden;
}

.problem-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(90deg, rgba(5,5,5,1) 0%, rgba(5,5,5,0.9) 40%, rgba(5,5,5,0) 100%);
    z-index: 1;
}

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

.problem-text {
    max-width: 600px;
}

.section-badge {
    border-radius: 50px;
    padding: 6px 20px;
    margin-bottom: 2rem;
    border-color: var(--orange-primary);
    color: var(--orange-primary);
    background: transparent;
}

.problem-headline {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 3rem;
}

.problem-headline .white-text {
    color: var(--text-white);
}

.problem-headline .orange-text {
    color: var(--orange-primary);
}

.problem-list-new {
    display: flex;
    flex-direction: column;
}

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

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

.x-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #fbbf24;
    color: #000;
    font-weight: 900;
    font-size: 1.5rem;
    border-radius: 10px;
    flex-shrink: 0;
    margin-top: 5px;
}

.problem-desc {
    font-size: 1.1rem;
    line-height: 1.4;
    color: var(--text-gray);
}

.problem-desc .white-text {
    color: var(--text-light-gray);
}

.problem-desc strong.white-text {
    color: var(--text-white);
    font-weight: 700;
}

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

/* Transition Section */
.transition-section {
    position: relative;
    padding: 5rem 0 3rem;
    background-color: var(--bg-dark);
    background-image: url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.9250714452961324.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    overflow: hidden;
}

.transition-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, rgba(5,5,5,1) 0%, rgba(5,5,5,0.85) 40%, rgba(5,5,5,0) 100%);
    z-index: 1;
}

.transition-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: 550px;
}

.transition-text {
    max-width: 550px;
    margin-bottom: 3rem;
}

.transition-headline {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.headline-top {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.clock-icon {
    flex-shrink: 0;
    color: var(--orange-primary);
}

.transition-headline .white-text {
    color: var(--text-white);
}

.transition-headline .orange-text {
    color: var(--orange-primary);
}

.orange-divider {
    height: 2px;
    width: 100%;
    max-width: 400px;
    background: linear-gradient(90deg, var(--orange-primary) 0%, rgba(255,107,0,0) 100%);
    margin-bottom: 2rem;
}

.transition-desc {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-light-gray);
}

.transition-desc .white-text {
    color: var(--text-light-gray);
}

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

.transition-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: auto;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}

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

.t-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--orange-primary);
    flex-shrink: 0;
}

.t-benefit-item p {
    font-size: 0.85rem;
    line-height: 1.2;
    color: var(--text-light-gray);
}

/* =========================================
   SESSÃO 4: COMO FUNCIONA
   ========================================= */
.how-it-works {
    position: relative;
    padding: 6rem 0;
    background-color: var(--bg-dark);
    background-image: url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.4418905961856937.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.how-it-works-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5,5,5,0.7);
    z-index: 1;
}

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

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 3rem;
}

.step-card {
    padding: 2.5rem 2rem;
    text-align: center;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 0, 0.4);
}

.step-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255,107,0,0.3));
}

.step-card p {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-white);
}

.result-highlight {
    background: rgba(255, 107, 0, 0.08);
    border: 1px dashed var(--orange-primary);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-white);
}

.result-highlight strong {
    color: var(--orange-primary);
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

/* =========================================
   SESSÃO 5: DEPOIMENTOS
   ========================================= */
.testimonials {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

.video-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.video-testimonial-card {
    background: #0d0d0d;
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    overflow: hidden;
}

.video-testimonial-card video {
    width: 100%;
    border-radius: 10px;
    display: block;
    aspect-ratio: 9/16;
    object-fit: cover;
    background: #000;
}

/* =========================================
   SESSÃO 6: OFERTA
   ========================================= */
.offer-section {
    position: relative;
    padding: 6rem 0 4rem;
    background-color: var(--bg-dark);
    background-image: url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.4418905961856937.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    overflow: hidden;
}

.offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(90deg, rgba(5,5,5,1) 0%, rgba(5,5,5,0.95) 50%, rgba(5,5,5,0) 100%);
    z-index: 1;
}

.offer-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.offer-text {
    max-width: 600px;
}

.offer-headline {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.offer-headline .white-text {
    color: var(--text-white);
}

.offer-headline .orange-text {
    color: var(--orange-primary);
}

.deliverables-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
    list-style: none;
}

.del-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.del-item-split {
    justify-content: space-between;
}

.del-main {
    display: flex;
    align-items: center;
    gap: 15px;
}

.del-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 2px solid var(--orange-primary);
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(255, 107, 0, 0.05);
}

.del-text {
    font-size: 1.15rem;
    line-height: 1.3;
    color: var(--text-white);
    font-weight: 500;
}

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

.del-value {
    text-align: right;
}

.value-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.value-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

.price-guarantee-box {
    display: flex;
    align-items: stretch;
    background: #0d0d0d;
    border: 1px solid rgba(132, 204, 22, 0.2);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(132, 204, 22, 0.05);
}

.price-side {
    padding: 2rem;
    border-right: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-label-new {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.price-value-new {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 900;
    color: #a3e635;
    line-height: 0.8;
    display: flex;
    align-items: flex-start;
}

.price-value-new .currency {
    font-size: 2.2rem;
    margin-top: 5px;
    margin-right: 5px;
}

.price-value-new .cents {
    font-size: 3rem;
    margin-top: 5px;
}

.guarantee-side {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 20px;
}

.shield-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.shield-icon svg {
    position: absolute;
    top: 0; left: 0;
}

.shield-text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #a3e635;
    font-family: var(--font-heading);
    line-height: 1;
}

.shield-number {
    font-size: 1.4rem;
    font-weight: 900;
}

.shield-days {
    font-size: 0.6rem;
    font-weight: 700;
}

.g-text-content h3 {
    color: #a3e635;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 8px;
    line-height: 1.2;
}

.g-text-content p {
    font-size: 0.95rem;
    color: var(--text-light-gray);
    line-height: 1.5;
}

.green-highlight {
    color: #a3e635;
    font-weight: 700;
}

.urgency-banner-new {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #0d0d0d;
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 0 15px rgba(255,107,0,0.05);
}

.urgency-icon-new {
    flex-shrink: 0;
    margin-top: 2px;
}

.urgency-banner-new p {
    font-size: 1.05rem;
    color: var(--text-light-gray);
    line-height: 1.5;
}

.final-cta-title-new {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.final-cta-title-new .orange-text {
    color: var(--orange-primary);
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(132, 204, 22, 0.4); transform: scale(1); }
    70% { box-shadow: 0 0 0 15px rgba(132, 204, 22, 0); transform: scale(1.02); }
    100% { box-shadow: 0 0 0 0 rgba(132, 204, 22, 0); transform: scale(1); }
}

.pulse-green {
    animation: pulse-green 2s infinite;
}

.cta-button-green {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #d9f99d 0%, #a3e635 30%, #65a30d 100%);
    color: #000;
    text-decoration: none;
    padding: 1.2rem 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.7), 0 10px 20px rgba(132, 204, 22, 0.3);
}

.cta-button-green:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #ecfccb 0%, #84cc16 30%, #4d7c0f 100%);
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    /* padding-right removed to prevent overlap issues */
}

.btn-main {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.btn-sub {
    font-size: 1.05rem;
    font-weight: 700;
    opacity: 0.85;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #000;
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: 15px;
}

.cta-trust-new {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mobile-vsl {
    display: none;
}

/* =========================================
   MEDIA QUERIES (RESPONSIVO)
   ========================================= */
@media (max-width: 992px) {
    .headline { font-size: 3rem; }
    .sub-headline { font-size: 1.8rem; }
    .sub-headline .orange-text-large { font-size: 2.5rem; }
    .hero::before { width: 80%; }
    
    .hero-content {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-video-desktop {
        display: none;
    }

    .transition-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

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

    .mobile-vsl {
        display: block;
        margin-bottom: 2.5rem;
    }
    .desktop-vsl, .desktop-vsl-title {
        display: none !important;
    }

    .hero {
        background-position: 70% center;
        padding: 6rem 0 4rem;
    }
    
    .problem-section {
        background-position: 70% center;
    }
    
    .problem-overlay {
        width: 100%;
        background: linear-gradient(180deg, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.7) 100%);
    }
    
    .problem-text {
        margin: 0 auto;
        text-align: center;
    }
    
    .problem-list-new {
        text-align: left;
    }
    
    .transition-section {
        background-position: 60% center;
    }
    .transition-overlay {
        width: 100%;
        background: linear-gradient(180deg, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.8) 50%, rgba(5,5,5,0.4) 100%);
    }
    .transition-headline {
        font-size: 2.3rem;
    }
    .orange-divider {
        margin: 0 auto 2rem;
    }
    .transition-text {
        margin: 0 auto 3rem;
        text-align: center;
    }
    
    .discover-section {
        background-position: 60% center;
    }
    .discover-overlay {
        width: 100%;
        background: linear-gradient(180deg, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.8) 50%, rgba(5,5,5,0.4) 100%);
    }
    .discover-text {
        margin: 0 auto;
        text-align: center;
    }
    .discover-headline {
        font-size: 2rem;
    }
    .d-item {
        text-align: left;
    }
    .safety-box-discover {
        flex-direction: column;
        text-align: center;
    }
    
    .hero::before {
        width: 100%;
        background: linear-gradient(180deg, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.7) 100%);
    }
    
    .hero-text {
        margin: 0 auto;
        text-align: center;
    }
    
    .benefits-grid {
        margin: 0 auto 2.5rem;
    }
    
    .social-proof-box {
        flex-direction: column;
        border-radius: 20px;
        text-align: center;
    }
    
    .avatars img { margin-left: -15px; }
    
    .price-value { font-size: 3rem; }
    
    .offer-section {
        background-position: 60% center;
    }
    .offer-overlay {
        width: 100%;
        background: linear-gradient(180deg, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.85) 50%, rgba(5,5,5,0.4) 100%);
    }
    .offer-text {
        text-align: center;
        margin: 0 auto;
    }
    .del-item {
        text-align: left;
    }
    .del-item-split {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .del-value {
        text-align: left;
        padding-left: 50px;
    }
    .price-guarantee-box {
        flex-direction: column;
    }
    .price-side {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 1.5rem;
    }
    .guarantee-side {
        padding: 1.5rem;
    }
    .btn-main {
        font-size: 1.2rem;
    }
    .btn-sub {
        font-size: 0.9rem;
    }
    
    .guarantee-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .headline { font-size: 2.5rem; }
    .sub-headline { font-size: 1.5rem; }
    .sub-headline .orange-text-large { font-size: 2rem; }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title { font-size: 1.8rem; }
    .highlight-title { font-size: 2rem; }
    
    .cta-button {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
}

/* =========================================
   DESKTOP ALTERNATING BACKGROUND OPACITY
   ========================================= */
@media (min-width: 993px) {
    /* Make even sections darker (less background opacity) to alternate the layout */
    .discover-overlay,
    .transition-overlay {
        background: rgba(5, 5, 5, 0.88);
        width: 100%;
    }
}

/* Secondary Links */
.secondary-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 15px auto 0;
    padding: 12px 24px;
    color: var(--text-white);
    font-size: 1.1rem;
    text-decoration: none;
    text-align: center;
    width: 100%;
    max-width: 320px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-family: var(--font-heading);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    letter-spacing: 0.5px;
}
.secondary-link svg {
    color: var(--orange-primary);
    transition: transform 0.3s ease;
}
.secondary-link:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: var(--orange-primary);
    color: var(--orange-primary);
    transform: translateY(-2px);
}
.secondary-link:hover svg {
    transform: scale(1.1);
}

/* =========================================
   CUSTOM VSL OVERLAY
   ========================================= */
.vsl-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://img.youtube.com/vi/nbLXQlzBjW0/maxresdefault.jpg');
    background-size: cover;
    background-position: center;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
}

.vsl-overlay::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.vsl-play-btn {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    background: var(--orange-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
    animation: pulse-play 2s infinite;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.vsl-overlay:hover .vsl-play-btn {
    transform: scale(1.1);
}

.vsl-play-btn svg {
    width: 40px;
    height: 40px;
    color: white;
    margin-left: 5px;
}

@keyframes pulse-play {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 20px rgba(255, 107, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

.vsl-click-text {
    position: relative;
    z-index: 2;
    color: white;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
