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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(to bottom, #111827, #1f2937, #000000);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.gradient-text {
    background: linear-gradient(to right, #facc15, #f97316, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: #facc15;
}

.highlight-yellow {
    color: #facc15;
}

.highlight-green {
    color: #10b981;
}

/* Urgency Bar */
.urgency-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #dc2626;
    color: #ffffff;
    padding: 0.5rem 0;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.urgency-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.875rem;
    font-weight: 700;
}

.urgency-icon {
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .urgency-bar .container {
        font-size: 1rem;
    }
}

/* Hero Section */
.hero-section {
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.hero-content {
    text-align: center;
    margin-bottom: 2rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(234, 179, 8, 0.2);
    border: 1px solid #facc15;
    color: #facc15;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.vsl-container {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 4px solid rgba(234, 179, 8, 0.3);
}

/* CTA Container */
.cta-container {
    text-align: center;
    margin-top: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(to right, #facc15, #f97316, #ef4444);
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 900;
    padding: 1.5rem 3rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .cta-button {
        font-size: 1.5rem;
        padding: 2rem 3rem;
    }
}

.cta-button.secondary {
    font-size: 1.25rem;
    padding: 1.75rem 2.5rem;
}

.cta-button.green {
    background: linear-gradient(to right, #10b981, #059669);
    font-size: 1.5rem;
    padding: 2rem 3rem;
    width: 100%;
}

@media (min-width: 768px) {
    .cta-button.green {
        width: auto;
    }
}

.cta-button.dark {
    background: #111827;
    font-size: 1.5rem;
    padding: 2rem 3rem;
}

.cta-button.dark:hover {
    background: #000000;
}

.cta-info {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Proof Section */
.proof-section {
    padding: 4rem 0;
    background: rgba(17, 24, 39, 0.5);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

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

.section-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .proof-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.proof-card {
    background: #1f2937;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 2px solid #374151;
    transition: all 0.3s ease;
}

.proof-card:hover {
    border-color: #facc15;
    transform: scale(1.05);
}

.proof-image {
    position: relative;
}

.proof-image img {
    width: 100%;
    height: auto;
    display: block;
}

.proof-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #10b981;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.proof-info {
    padding: 1rem;
    text-align: center;
}

.proof-info h3 {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.proof-value {
    color: #facc15;
    font-weight: 700;
}

/* Offer Section */
.offer-section {
    padding: 4rem 0;
    background: linear-gradient(to right, rgba(234, 179, 8, 0.1), rgba(249, 115, 22, 0.1), rgba(239, 68, 68, 0.1));
    border-top: 4px solid #facc15;
    border-bottom: 4px solid #facc15;
}

.offer-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.offer-box {
    background: #111827;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid #facc15;
}

.offer-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.offer-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1f2937;
    padding: 1rem;
    border-radius: 0.5rem;
}

.offer-item-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
}

.offer-item-content svg {
    color: #facc15;
    flex-shrink: 0;
}

.offer-price {
    color: #9ca3af;
    text-decoration: line-through;
}

.offer-total {
    border-top: 2px solid #374151;
    padding-top: 1.5rem;
}

.total-label {
    color: #9ca3af;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.total-old {
    font-size: 1.875rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: 1rem;
}

.discount-label {
    font-size: 0.875rem;
    color: #facc15;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price-box {
    background: linear-gradient(to right, #facc15, #f97316, #ef4444);
    padding: 1px;
    border-radius: 0.75rem;
}

.price-box > div {
    background: #111827;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.price-label {
    color: #d1d5db;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.price-final {
    font-size: 3.75rem;
    font-weight: 900;
    background: linear-gradient(to right, #facc15, #f97316, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-installment {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 0.5rem;
}

.scarcity-box {
    background: rgba(220, 38, 38, 0.2);
    border: 2px solid #ef4444;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.scarcity-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f87171;
    margin-bottom: 0.5rem;
}

.scarcity-text {
    color: #d1d5db;
}

/* Guarantee Section */
.guarantee-section {
    padding: 4rem 0;
}

.guarantee-box {
    background: #111827;
    border-radius: 1rem;
    padding: 2rem;
    border: 2px solid #10b981;
    text-align: center;
}

.guarantee-icon {
    color: #10b981;
    margin: 0 auto 1.5rem;
}

.guarantee-title {
    font-size: 1.875rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .guarantee-title {
        font-size: 2.25rem;
    }
}

.guarantee-text {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.guarantee-highlight {
    font-size: 1.125rem;
    color: #facc15;
    font-weight: 700;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: rgba(17, 24, 39, 0.5);
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.faq-item {
    background: #1f2937;
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 1px solid #374151;
}

.faq-question {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #facc15;
}

.faq-answer {
    color: #d1d5db;
}

/* Final CTA Section */
.final-cta-section {
    padding: 4rem 0;
    background: linear-gradient(to right, #facc15, #f97316, #ef4444);
    text-align: center;
}

.final-cta-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .final-cta-title {
        font-size: 3rem;
    }
}

.final-cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .final-cta-subtitle {
        font-size: 1.5rem;
    }
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: #000000;
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
}

.footer p {
    margin: 0.5rem 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

