* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo h2 {
    color: #00b359;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

/* ===== SISTEMA COMPLETO DE EFEITOS VISUAIS CYBERPUNK ===== */

/* 4. BARRA DE PROGRESSO DE SCROLL */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #00a040, #008f2a);
    z-index: 10001;
    transition: width 0.1s ease;
    pointer-events: none;
}

/* 1. CONTAINER PARA PARTÍCULAS FLUTUANTES */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00a040;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* Animações para partículas flutuantes */
@keyframes floatUp {
    0% { 
        transform: translateY(0px) translateX(0px); 
        opacity: 0.2; 
    }
    25% { 
        transform: translateY(-20px) translateX(10px); 
        opacity: 0.5; 
    }
    50% { 
        transform: translateY(-10px) translateX(-15px); 
        opacity: 0.3; 
    }
    75% { 
        transform: translateY(-30px) translateX(5px); 
        opacity: 0.4; 
    }
    100% { 
        transform: translateY(-40px) translateX(-10px); 
        opacity: 0.2; 
    }
}

@keyframes floatDown {
    0% { 
        transform: translateY(0px) translateX(0px); 
        opacity: 0.3; 
    }
    25% { 
        transform: translateY(15px) translateX(-8px); 
        opacity: 0.5; 
    }
    50% { 
        transform: translateY(25px) translateX(12px); 
        opacity: 0.2; 
    }
    75% { 
        transform: translateY(10px) translateX(-5px); 
        opacity: 0.4; 
    }
    100% { 
        transform: translateY(30px) translateX(8px); 
        opacity: 0.3; 
    }
}

@keyframes floatSide {
    0% { 
        transform: translateX(0px) translateY(0px); 
        opacity: 0.4; 
    }
    25% { 
        transform: translateX(20px) translateY(-5px); 
        opacity: 0.2; 
    }
    50% { 
        transform: translateX(-15px) translateY(10px); 
        opacity: 0.5; 
    }
    75% { 
        transform: translateX(10px) translateY(-8px); 
        opacity: 0.3; 
    }
    100% { 
        transform: translateX(-5px) translateY(5px); 
        opacity: 0.4; 
    }
}

/* 2. MATRIX RAIN CANVAS */
.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.1;
}

/* 3. GRADIENTES RADIAIS DE LUZ - Aplicado na Hero Section */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 160, 64, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 160, 64, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Otimizações para Mobile */
@media (max-width: 768px) {
    .particle {
        width: 1px;
        height: 1px;
    }
    
    .matrix-rain {
        opacity: 0.05;
    }
    
    .scroll-progress {
        height: 2px;
    }
}

@media (max-width: 480px) {
    .matrix-rain {
        opacity: 0.03;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 40px;
    color: #fff;
    min-height: auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 179, 89, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.success-message {
    margin-bottom: 30px;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 179, 89, 0.2), rgba(0, 128, 64, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.success-icon:before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00b359, #008040);
    z-index: -1;
    opacity: 0.5;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

.success-icon i {
    font-size: 36px;
    color: #00b359;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 15px;
    background: linear-gradient(135deg, #00b359 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 22px;
    color: #00b359;
    margin-bottom: 15px;
    font-weight: 600;
}

.confirmation-text {
    color: #ccc;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

/* Video Section - Maior destaque */
.video-section {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-container-large {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 179, 89, 0.2);
    border: 3px solid #00b359;
    background: transparent;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 0;
    padding: 0;
}

.video-cta {
    margin-top: 30px;
    text-align: center;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.video-cta .btn-primary {
    font-size: 18px;
    padding: 15px 30px;
    margin-top: 0;
    font-weight: 700;
}

.video-embed {
    position: relative;
    width: 100%;
    background: transparent;
    overflow: hidden;
    border-radius: 8px;
    line-height: 0;
    padding: 0;
    margin: 0;
    display: block;
}

.video-embed iframe,
.video-embed wistia-player,
.video-embed vturb-smartplayer {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16/9;
    border-radius: 8px;
    display: block;
    background: transparent;
    overflow: hidden;
}

/* Steps Section */
.steps-section {
    background-color: #0a0a0a;
    padding: 40px 0 80px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.steps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(0, 179, 89, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00b359, #008040);
}

.section-subtitle {
    color: #aaa;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 25px;
    background: rgba(20, 20, 20, 0.7);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(0, 179, 89, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 179, 89, 0.2);
}

.step-item:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 179, 89, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.step-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.step-number {
    font-size: 24px;
    color: #fff;
    background: linear-gradient(135deg, #00b359, #008040);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-icon i {
    font-size: 24px;
    color: #00b359;
    margin-top: 10px;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 22px;
}

.benefits-list {
    list-style: none;
    margin: 1.5rem 0;
}

.benefits-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.benefits-list i {
    color: #00b359;
    margin-top: 0.3rem;
}

.note {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 1.5rem;
    font-style: italic;
}

.signature {
    font-weight: 600;
    color: #ccc;
    margin-top: 0.5rem;
    text-align: right;
}

.support-info {
    background: rgba(20, 20, 20, 0.7);
    border-radius: 12px;
    padding: 40px;
    margin-top: 60px;
    text-align: center;
    border: 1px solid rgba(0, 179, 89, 0.3);
    position: relative;
    overflow: hidden;
}

.support-info:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 179, 89, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.support-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00b359, #008040);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.support-icon i {
    font-size: 30px;
    color: #fff;
}

.support-info h3 {
    color: #fff;
    margin-top: 0;
    font-size: 24px;
    margin-bottom: 15px;
}

.support-info > p {
    color: #ccc;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.support-channels {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.support-channel {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 10, 10, 0.5);
    padding: 12px 20px;
    border-radius: 8px;
    min-width: 250px;
}

.support-channel i {
    font-size: 20px;
    color: #00b359;
}

.support-channel p {
    margin: 0;
    color: #ccc;
}

.support-channel strong {
    color: #fff;
    font-weight: 600;
}

.support-time {
    font-size: 14px;
    color: #aaa;
    margin-top: 20px;
}

.support-time span {
    color: #00b359;
    font-weight: 600;
}

/* Upsell Section */
.upsell-section {
    padding: 80px 0;
    background-color: #080808;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.upsell-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(0, 179, 89, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.upsell-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: rgba(20, 20, 20, 0.7);
    border-radius: 12px;
    padding: 50px;
    border: 1px solid rgba(0, 179, 89, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.upsell-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #00b359, #008040);
    color: white;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 179, 89, 0.4);
}

.upsell-container h2 {
    color: #fff;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 32px;
}

.upsell-subtitle {
    color: #ccc;
    margin-bottom: 40px;
    font-size: 20px;
}

.upsell-features {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.upsell-feature {
    flex: 1;
    min-width: 250px;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: left;
    border: 1px solid rgba(0, 179, 89, 0.2);
    transition: transform 0.3s ease;
}

.upsell-feature:hover {
    transform: translateY(-5px);
}

.upsell-feature i {
    font-size: 24px;
    color: #00b359;
    margin-bottom: 15px;
    display: block;
}

.upsell-feature h4 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
}

.upsell-feature p {
    color: #aaa;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(90deg, #00b359, #008040);
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 179, 89, 0.4);
    width: auto;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 179, 89, 0.5);
}

.btn-large {
    font-size: 18px;
    padding: 16px 32px;
}

.btn-glow {
    animation: glow 2s infinite alternate;
    position: relative;
    overflow: hidden;
}

.btn-glow:after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50px;
    background: linear-gradient(135deg, #00b359, #008040);
    z-index: -1;
    opacity: 0.5;
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

.btn-glow:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    animation: pulse 3s infinite;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(0, 179, 89, 0.6), 0 0 10px rgba(0, 128, 64, 0.4);
    }
    100% {
        box-shadow: 0 0 20px rgba(0, 179, 89, 0.8), 0 0 30px rgba(0, 128, 64, 0.6);
    }
}

@keyframes pulse {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #0a0a0a;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(0, 179, 89, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.faq .section-header {
    margin-bottom: 50px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: rgba(20, 20, 20, 0.7);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 179, 89, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-size: 17px;
}

.faq-question:hover {
    background-color: rgba(30, 30, 30, 0.7);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #00b359;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #ccc;
    line-height: 1.6;
    font-size: 16px;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 1000px;
}

/* Footer */
.footer {
    background-color: #050505;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 179, 89, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-item i {
    color: #00b359;
    font-size: 16px;
}

.footer-item p {
    margin: 0;
    color: #aaa;
    font-size: 14px;
}

.footer-logo {
    margin: 10px 0;
    text-align: center;
    width: 100%;
}

.footer-logo h3 {
    color: #fff;
    font-size: 24px;
    margin: 0;
    background: linear-gradient(90deg, #00b359, #008040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo p {
    color: #aaa;
    margin: 5px 0 0;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-copyright {
    text-align: center;
    width: 100%;
}

.footer-copyright p {
    color: #777;
    margin: 5px 0;
    font-size: 14px;
    text-align: center;
}

.disclaimer {
    color: #555;
    font-size: 12px;
    max-width: 600px;
    margin: 10px auto 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        width: 100%;
    }
    
    .hero-text {
        padding: 40px 20px;
        width: 100%;
    }
    
    .success-message h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .step-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 25px;
        width: 100%;
    }
    
    .step-icon {
        flex-direction: row;
        gap: 15px;
        margin-bottom: 10px;
    }
    
    .step-number {
        margin-bottom: 0;
    }
    
    .video-section {
        width: 100%;
    }
    
    .video-container-large {
        width: 100%;
    }
    
    .video-embed {
        width: 100%;
    }
    
    .video-cta {
        width: 100%;
    }
    
    .btn-primary {
        width: 100%;
        text-align: center;
    }
    
    .support-channels {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .support-channel {
        width: 100%;
    }
    
    .upsell-features {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .upsell-feature {
        width: 100%;
    }
    
    .upsell-container {
        padding: 40px 25px;
        width: 100%;
        max-width: 100%;
    }
    
    .upsell-section .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .upsell-container h2 {
        font-size: 26px;
    }
    
    .upsell-subtitle {
        font-size: 18px;
    }
    
    .price-tag {
        font-size: 20px;
    }
    
    .current-price {
        font-size: 24px;
    }
    
    .btn-large {
        font-size: 16px;
        padding: 14px 28px;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        align-items: center;
        text-align: center;
    }
    
    .footer-item {
        justify-content: center;
    }
    
    .video-embed iframe,
    .video-embed wistia-player {
        min-height: 300px !important;
        width: 100% !important;
    }
    
    .steps-container {
        width: 100%;
    }
    
    .faq-item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* Layout geral */
    .container {
        padding: 0 15px;
    }
    
    .footer {
        padding: 30px 0;
    }
    
    .footer-item p {
        font-size: 13px;
        text-align: center;
        width: 100%;
    }
    
    .footer-logo {
        margin: 15px 0;
    }
    
    .footer-copyright p {
        padding: 0 10px;
    }
    
    section {
        padding: 15px 0;
    }
    
    /* Hero Section */
    .hero {
        padding: 80px 0 50px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 10px;
    }
    
    .success-message h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .confirmation-text {
        font-size: 16px;
        line-height: 1.4;
    }
    
    /* Títulos gerais */
    .section-header h2 {
        font-size: 28px;
    }
    
    /* Video Section */
    .video-section {
        margin: 1.5rem auto;
        width: 100%;
    }
    
    .video-container-large {
        border: 2px solid #00b359;
        line-height: 0;
        padding: 0;
    }
    
    .video-embed {
        line-height: 0;
        padding: 0;
        margin: 0;
    }
    
    .video-embed iframe,
    .video-embed wistia-player {
        aspect-ratio: 16/9;
        height: auto !important;
        min-height: auto !important;
        line-height: 0;
        padding: 0;
        margin: 0;
    }
    
    .video-cta .btn-primary {
        font-size: 16px;
        padding: 14px 24px;
        width: 100%;
    }
    
    /* Botões */
    .btn-primary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .btn-large {
        padding: 1.2rem 1.8rem;
        font-size: 1.1rem;
    }
    
    /* Ícone de sucesso */
    .success-icon {
        width: 60px;
        height: 60px;
    }
    
    .success-icon i {
        font-size: 28px;
    }
    
    /* Passos */
    .step-item {
        padding: 20px 15px;
    }
    
    .step-content h3 {
        font-size: 20px;
    }
    
    .step-description {
        font-size: 16px;
    }
    
    .benefits-list li {
        font-size: 16px;
    }
    
    .testimonial-mini {
        font-size: 16px;
    }
    
    .notification-tip {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    /* Support */
    .support-info {
        padding: 30px 20px;
    }
    
    .support-icon {
        width: 70px;
        height: 70px;
    }
    
    .support-icon i {
        font-size: 28px;
    }
    
    /* Upsell */
    .upsell-badge {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .upsell-container {
        padding: 25px 15px;
    }
    
    .upsell-container h2 {
        font-size: 24px;
    }
    
    .upsell-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .upsell-feature h4 {
        font-size: 16px;
    }
    
    .upsell-feature p {
        font-size: 14px;
    }
    
    /* FAQ */
    .faq-item {
        padding: 15px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 15px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
    
    .faq-answer.active {
        padding: 0 15px 15px;
    }
}