/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Power BI Theme baseado na referência */
    --primary-color: #F2B705;
    --primary-dark: #D4A004;
    --secondary-color: #0A2540;
    --accent-color: #4A90E2;
    --text-dark: #2d2d2d;
    --text-light: #222222;
    --bg-light: #f8f8f8;
    --bg-dark: #0A2540;
    --bg-hero: #0D3B66;
    --white: #ffffff;
    --success: #28a745;
    --border-color: #e0e0e0;
    
    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    background: linear-gradient(180deg, #0A2540 0%, #0D3B66 50%, #0A2540 100%);
    padding: 50px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-image-placeholder {
    max-width: 500px;
    margin: 0 auto 35px;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.hero-image-placeholder img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    mix-blend-mode: normal;
    display: block;
}

/* Hero Video (YouTube Shorts) */
.hero-video-placeholder {
    max-width: 350px;
    margin: 0 auto 35px;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* Aspect ratio 9:16 (shorts) - forçado */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 20px;
}

.video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56.25%; /* 9/16 = 0.5625 - força vertical */
    height: 100%;
    min-width: 100%;
    min-height: 177.78%;
    border: none;
    pointer-events: auto;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: all;
    z-index: 10;
    cursor: pointer;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-sound-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.video-sound-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.video-sound-btn svg {
    width: 40px;
    height: 40px;
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle .highlight {
    color: var(--primary-color);
    font-weight: 800;
}

/* ========================================
   HERO CONVERSION BULLETS
   ======================================== */
.hero-bullets {
    max-width: 600px;
    margin: 35px auto 0;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px solid rgba(242, 183, 5, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.conversion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.conversion-list li {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    color: var(--white);
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    line-height: 1.3;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease;
}

.conversion-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.conversion-list li:first-child {
    padding-top: 0;
}

.conversion-list li:hover {
    transform: translateX(5px);
}

.bullet-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-color), #FDB44B);
    color: var(--secondary-color);
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(242, 183, 5, 0.4);
}

.conversion-list li strong {
    color: var(--primary-color);
    font-weight: 800;
}

/* ========================================
   SUBTITLE SECTION (REMOVIDA - AGORA PARTE DO HERO)
   ======================================== */
.subtitle-section {
    display: none;
}

.section-subtitle {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.section-subtitle .highlight {
    color: var(--primary-color);
    font-weight: 900;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #6B1E1E 0%, #8B2E2E 50%, #6B1E1E 100%);
    position: relative;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    background: var(--white);
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    will-change: transform;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.feature-image {
    width: 100%;
    background: linear-gradient(135deg, #FDB44B 0%, #F2994A 100%);
    padding: 0;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.feature-content {
    padding: 20px 20px 24px 20px;
    text-align: left;
}

.feature-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    color: #003366;
    margin-bottom: 12px;
    line-height: 1.3;
    text-transform: uppercase;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    letter-spacing: 0.3px;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(40, 167, 69, 0.3);
    margin-top: 3px;
}

.feature-description {
    font-size: 0.93rem;
    color: #222;
    line-height: 1.65;
}

/* ========================================
   CTA BUTTONS
   ======================================== */
.cta-button-wrapper {
    text-align: center;
}

.cta-button,
.cta-button-final {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
    padding: 22px 55px;
    border-radius: var(--radius-xl);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover,
.cta-button-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.6);
    background: linear-gradient(135deg, #20c997, #28a745);
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits-section {
    padding: 60px 20px;
    background-color: #1a1a1a;
}

.benefits-section .section-title {
    color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 35px 25px;
    background: linear-gradient(135deg, #4a4a4a, #5a5a5a);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    will-change: transform;
}

.benefit-item:nth-child(2n) {
    background: linear-gradient(135deg, #c41e3a, #8b0000);
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.5);
}

.benefit-item:nth-child(2n):hover {
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.5);
}

.benefit-item:nth-child(2n+1):hover {
    box-shadow: 0 8px 25px rgba(74, 74, 74, 0.5);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-benefit-icon {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.benefit-item:nth-child(2n+1) .check-benefit-icon {
    color: #c41e3a;
}

.benefit-title {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.3;
    text-transform: uppercase;
}

.benefit-description {
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.6;
}

/* ========================================
   TARGET AUDIENCE SECTION
   ======================================== */
.target-section {
    padding: 60px 20px;
    background-color: #2d2d2d;
}

.target-section .section-title {
    color: var(--white);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.target-item {
    text-align: center;
    padding: 30px 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.target-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.target-title {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
}

/* ========================================
   BONUS SECTION
   ======================================== */
.bonus-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.bonus-title {
    color: var(--white);
    line-height: 1.3;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    max-width: 900px;
    margin: 0 auto;
}

.bonus-item {
    text-align: center;
    padding: 35px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--accent-color);
}

.bonus-image-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #f0f0f0, #d0d0d0);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bonus-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-name {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.bonus-price {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bonus-old-price {
    font-size: 1rem;
    font-weight: 600;
    color: #999;
    text-decoration: line-through;
}

.bonus-free {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--success);
}

/* ========================================
   SOCIAL PROOF SECTION
   ======================================== */
.social-proof-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.social-proof-section .section-title {
    color: var(--text-dark);
    font-weight: 800;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   OFFER SECTION
   ======================================== */
.offer-section {
    padding: 30px 20px;
    background: linear-gradient(180deg, #e8f4f8 0%, #f0f8fc 100%);
}

.offer-header {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
    text-transform: uppercase;
    -webkit-text-stroke: 1px #4A90E2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.plans-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 40px;
    justify-items: center;
}

.plan-box {
    background: var(--white);
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 500px;
    will-change: transform;
}

.plan-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.plan-basic .plan-badge {
    margin-bottom: 12px;
}

.plan-basic .plan-name {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.plan-basic .pricing-box {
    margin-bottom: 15px;
}

.plan-basic .old-price-section {
    margin-bottom: 5px;
}

.plan-basic .old-price-label {
    font-size: 0.95rem;
    color: #d32f2f;
}

.plan-basic .current-price-section {
    margin-bottom: 0;
}

.plan-basic .price-label {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.plan-basic .current-price {
    margin-bottom: 0;
    font-size: 3rem;
}

.plan-basic .plan-features {
    margin-bottom: 15px;
}

.plan-basic .offer-list {
    margin-bottom: 15px;
}

.plan-basic .offer-list li {
    padding: 6px 0;
    font-size: 0.95rem;
}

.plan-basic {
    padding: 20px 15px;
    max-width: 400px;
}

.plan-premium {
    border: 4px solid var(--primary-color);
    transform: scale(1.05);
    margin: 0 auto;
}

.plan-premium:hover {
    transform: scale(1.08) translateY(-5px);
}

.plan-badge {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: white;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-align: center;
}

.badge-icon {
    font-size: 1rem;
    margin-right: 5px;
}

.premium-badge {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

.plan-name {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.plan-premium .plan-name {
    font-size: 2rem;
    color: var(--text-dark);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.plan-rating {
    text-align: center;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.stars {
    font-size: 0.85rem;
    margin-bottom: 0;
    letter-spacing: 1px;
    line-height: 1;
}

.rating-text {
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    white-space: nowrap;
}

.plan-features {
    margin-bottom: 20px;
}

.offer-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 35px;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--primary-color);
}

.urgency-text {
    text-align: center;
    margin-top: 30px;
}

.urgency-text h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: #d32f2f;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.7; }
}

.pricing-box {
    text-align: center;
    margin-bottom: 20px;
}

.old-price-section {
    margin-bottom: 8px;
}

.old-price-label {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: #999;
    text-decoration: line-through;
}

.plan-premium .old-price-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #d32f2f;
    text-decoration: line-through;
}

.price-label {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.current-price {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--success);
    line-height: 1;
    margin-bottom: 10px;
}

.premium-price {
    color: #FF6B35;
    font-size: 5.5rem;
}

.payment-terms {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
}

.offer-details {
    margin-bottom: 40px;
}

.offer-list {
    list-style: none;
    margin-bottom: 30px;
}

.offer-list li {
    font-size: 1.05rem;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
    color: var(--text-dark);
}

.offer-list li:last-child {
    border-bottom: none;
}

.basic-list {
    list-style: none;
    margin-bottom: 20px;
    text-align: left;
}

.basic-list li {
    font-size: 1.05rem;
    padding: 8px 0;
    border-bottom: none;
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.premium-list {
    list-style: none;
    margin-bottom: 20px;
    text-align: left;
}

.premium-list li {
    font-size: 1.05rem;
    padding: 8px 0;
    border-bottom: none;
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.premium-list li:nth-child(n+6),
.basic-list li:nth-child(n+6) {
    font-size: 0.95rem;
    font-weight: 600;
}

.check-green {
    color: #28a745;
    font-weight: 900;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.gift-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.black-friday-text {
    font-size: 0.8rem;
    color: var(--text-dark);
    margin: 10px 0 8px 0;
    line-height: 1.3;
    text-align: center;
}

.black-friday-text strong {
    font-weight: 700;
}

.bonus-list {
    background: #fffbea;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 2px dashed var(--accent-color);
}

.bonus-list-title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.bonus-list ul {
    list-style: none;
}

.bonus-list li {
    font-size: 1rem;
    padding: 8px 0;
    font-weight: 600;
    color: var(--text-dark);
}

.cta-final-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.secure-checkout {
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--success);
}

.trust-badges {
    margin-top: 15px;
    text-align: center;
}

.trust-badges img {
    max-width: 200px;
    height: auto;
    display: inline-block;
}

.device-images {
    text-align: center;
    margin-top: 40px;
}

.device-placeholder {
    max-width: 600px;
    margin: 0 auto;
    height: 300px;
    background: linear-gradient(135deg, #f0f0f0, #d0d0d0);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.device-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ========================================
   GUARANTEE SECTION
   ======================================== */
.guarantee-section {
    padding: 30px 20px;
    background: #e8e8e8;
}

.guarantee-box {
    max-width: 450px;
    margin: 0 auto;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.guarantee-badge {
    margin: 0 auto 30px;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.guarantee-content {
    text-align: center;
}

.guarantee-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 900;
    color: #2c3e50;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.guarantee-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0 0 25px 0;
}

.guarantee-text strong {
    color: #2c3e50;
    font-weight: 800;
}

.guarantee-cta {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.guarantee-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    padding: 30px 20px;
    background-color: var(--bg-light);
}

.faq-section .section-title {
    color: var(--text-dark);
    margin-bottom: 35px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 12px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 18px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question h4 {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.faq-toggle {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 18px;
}

.faq-answer p {
    font-size: 0.98rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 40px 20px;
    background-color: var(--bg-dark);
    color: var(--white);
}

.footer-content {
    text-align: center;
}

.footer-text {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.separator {
    color: #333;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }

    .hero-image-placeholder {
        max-width: 90%;
        margin-bottom: 30px;
    }
    
    .hero-video-placeholder {
        max-width: 280px;
        margin-bottom: 30px;
    }
    
    .video-wrapper {
        padding-bottom: 177.78%; /* Mantém 9:16 no mobile */
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-bullets {
        padding: 18px 20px;
        margin: 25px auto 0;
    }
    
    .conversion-list li {
        font-size: 1.05rem;
        padding: 8px 0;
        gap: 12px;
    }
    
    .conversion-list li:first-child {
        padding-top: 0;
    }
    
    .bullet-icon {
        width: 24px;
        height: 24px;
        font-size: 0.85rem;
    }

    .section-subtitle {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.7rem;
        margin-bottom: 35px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-item {
        padding: 20px;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    .feature-description {
        font-size: 0.85rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .target-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .offer-header {
        font-size: 1.8rem;
        font-weight: 900;
    }

    .plans-wrapper {
        grid-template-columns: 1fr;
        padding: 0 10px;
        justify-items: center;
    }

    .plan-box {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .offer-box {
        padding: 25px 20px;
    }

    .current-price {
        font-size: 2.8rem;
    }

    .cta-button,
    .cta-button-final {
        font-size: 1rem;
        padding: 16px 35px;
    }

    .black-friday-text {
        font-size: 0.75rem;
        line-height: 1.25;
        margin: 8px 0 6px 0;
    }

    .black-friday-text strong {
        font-size: 0.8rem;
    }

    .basic-list li,
    .premium-list li {
        font-size: 1.05rem;
    }

    .premium-list li:nth-child(n+6),
    .basic-list li:nth-child(n+6) {
        font-size: 0.95rem;
        font-weight: 600;
    }

    .premium-price {
        font-size: 4.5rem;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .guarantee-badge {
        width: 100px;
        height: 100px;
    }

    .guarantee-title {
        font-size: 1.2rem;
    }

    .faq-question {
        padding: 18px;
    }

    .faq-question h4 {
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 18px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 1.1rem;
    }

    .hero-image-placeholder {
        max-width: 95%;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .current-price {
        font-size: 2.3rem;
    }

    .offer-list li,
    .bonus-list li {
        font-size: 0.85rem;
    }

    .cta-button,
    .cta-button-final {
        font-size: 0.95rem;
        padding: 14px 30px;
    }
}

/* ========================================
   UTILITIES
   ======================================== */
.text-center {
    text-align: center;
}

/* ========================================
   UPGRADE MODAL
   ======================================== */
.upgrade-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.upgrade-modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.upgrade-modal-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    padding: 20px;
    text-align: center;
}

.upgrade-modal-header h2 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.upgrade-modal-body {
    padding: 25px 20px;
    text-align: center;
}

.upgrade-subtitle {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.highlight-orange {
    color: #28a745;
    font-weight: 900;
}

.upgrade-price-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.upgrade-old-price {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: #666;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.upgrade-new-price {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.price-big {
    font-size: 3rem;
    font-weight: 900;
    color: #d32f2f;
    display: block;
    margin-top: 3px;
}

.upgrade-economy {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--success);
    margin-top: 5px;
}

.upgrade-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    text-align: left;
}

.upgrade-benefits li {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    color: var(--text-dark);
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
}

.upgrade-benefits li:last-child {
    border-bottom: none;
}

.check-icon {
    color: var(--success);
    font-weight: 900;
    font-size: 1.3rem;
    margin-right: 12px;
}

.upgrade-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-upgrade {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    padding: 16px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-upgrade:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 193, 7, 0.6);
}

.btn-decline {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: #666;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    padding: 10px;
    transition: color 0.3s ease;
}

.btn-decline:hover {
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .upgrade-modal-content {
        width: 95%;
        max-width: none;
    }
    
    .upgrade-modal-header h2 {
        font-size: 1.4rem;
    }
    
    .upgrade-subtitle {
        font-size: 1.1rem;
    }
    
    .price-big {
        font-size: 2.3rem;
    }
    
    .btn-upgrade {
        font-size: 1rem;
        padding: 16px 25px;
    }
}

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }

/* ========================================
   WHATSAPP FLOAT BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    color: #333;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    font-family: var(--font-secondary);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    max-width: 250px;
    white-space: normal;
    line-height: 1.4;
    text-align: center;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ========================================
   PURCHASE NOTIFICATION
   ======================================== */
.purchase-notification {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9998;
    transform: translateX(-400px);
    transition: transform 0.5s ease;
    max-width: 300px;
}

.purchase-notification.show {
    transform: translateX(0);
}

.notification-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-name {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 15px;
    color: var(--primary-color);
    margin: 0 0 3px 0;
}

.notification-text {
    font-family: var(--font-secondary);
    font-size: 13px;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-tooltip {
        bottom: 65px;
        max-width: 200px;
        font-size: 13px;
    }
    
    .purchase-notification {
        bottom: 90px;
        left: 15px;
        max-width: calc(100% - 30px);
        padding: 12px 15px;
    }
    
    .notification-icon {
        font-size: 24px;
    }
    
    .notification-name {
        font-size: 14px;
    }
    
    .notification-text {
        font-size: 12px;
    }
}
