* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* Efeito de fundo gradiente */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #000000 100%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    text-align: center;
    padding: 30px 0;
    animation: fadeIn 1s ease;
}

.logo {
    font-size: 36px;
    font-weight: 900;
    color: #c7ff00;
    letter-spacing: -1px;
    text-shadow: 0 0 20px rgba(199, 255, 0, 0.5);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 20px 0;
}

.hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Banner Principal com Imagem */
.main-banner {
    position: relative;
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(199, 255, 0, 0.18);
    animation: slideIn 0.8s ease;
    /* Limita o tamanho do bloco do banner */
    max-width: 640px;
    width: 100%;
}

/* As imagens agora ficam sempre menores e proporcionais */
.banner-image,
.plans-image {
    display: block;
    width: 100%;
    /* Nunca ocupa mais do que 560px em telas grandes
       e encolhe bem no mobile */
    max-width: clamp(260px, 90vw, 560px);
    height: auto;
    margin: 0 auto;
    border-radius: 16px;
}

/* Contador Sobreposto na Imagem */
.counter-overlay {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.9);
    border: 3px solid #c7ff00;
    border-radius: 16px;
    padding: 18px;
    min-width: 160px;
    box-shadow: 0 0 30px rgba(199, 255, 0, 0.5);
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
}

.counter-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.counter-number {
    font-size: 48px;
    font-weight: 900;
    color: #c7ff00;
    text-shadow: 0 0 20px rgba(199, 255, 0, 0.8);
    line-height: 1;
    animation: countdown 1s ease-in-out;
}

.counter-warning {
    font-size: 12px;
    color: #c7ff00;
    margin-top: 8px;
    animation: blink 1.5s ease-in-out infinite;
}

/* Seção de Planos com Imagem */
.plans-section {
    margin: 24px 0 32px;
    animation: fadeInUp 1s ease 0.3s both;
    /* Limita o bloco dos planos */
    max-width: 640px;
    width: 100%;
}

/* Detalhes dos Planos em Cards */
.plans-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin: 24px auto 0;
    max-width: 800px;
}

.plan-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #333;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.5s both;
}

.plan-card.featured {
    border-color: #c7ff00;
    box-shadow: 0 0 32px rgba(199, 255, 0, 0.26);
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(199, 255, 0, 0.18);
}

.plan-card h3 {
    color: #c7ff00;
    font-size: 22px;
    margin-bottom: 14px;
    font-weight: 700;
}

.plan-card ul {
    list-style: none;
    margin-bottom: 16px;
}

.plan-card li {
    padding: 6px 0 6px 20px;
    font-size: 14px;
    color: #ddd;
    position: relative;
}

.plan-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c7ff00;
}

.price-tag {
    text-align: center;
    padding: 12px;
    background: rgba(199, 255, 0, 0.1);
    border-radius: 10px;
    border: 1px solid #c7ff00;
}

.old-price {
    display: block;
    color: #999;
    text-decoration: line-through;
    font-size: 13px;
    margin-bottom: 4px;
}

.new-price {
    display: block;
    color: #c7ff00;
    font-size: 20px;
    font-weight: 700;
}

/* Seção de Bônus */
.bonus-section {
    background: linear-gradient(135deg, #c7ff00 0%, #a6d900 100%);
    color: #000;
    padding: 28px;
    border-radius: 16px;
    margin: 28px auto 0;
    max-width: 800px;
    box-shadow: 0 20px 60px rgba(199, 255, 0, 0.3);
    animation: fadeInUp 1s ease 0.7s both;
}

.bonus-badge {
    display: inline-block;
    background: #000;
    color: #c7ff00;
    padding: 6px 16px;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.bonus-section h3 {
    font-size: 22px;
    margin-bottom: 6px;
    font-weight: 900;
}

.bonus-section p {
    font-size: 14px;
    opacity: 0.9;
}

/* Seção de Urgência */
.urgency-section {
    background: rgba(255, 0, 0, 0.08);
    border: 2px solid rgba(255, 0, 0, 0.24);
    border-radius: 12px;
    padding: 16px;
    margin: 22px auto 0;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.9s both;
}

.urgency-text {
    color: #fff;
    font-size: 15px;
    line-height: 1.7;
}

/* CTA Button Pulsante */
.cta-button {
    background: linear-gradient(135deg, #c7ff00 0%, #a6d900 100%);
    color: #000;
    border: none;
    padding: 18px 34px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin: 28px auto 0;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(199, 255, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(199, 255, 0, 0.6);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(199, 255, 0, 0.7); }
    70% { box-shadow: 0 0 0 24px rgba(199, 255, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(199, 255, 0, 0); }
}

.cta-discount {
    background: #000;
    color: #c7ff00;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 900;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: #1a1a1a;
    margin: 2% auto;
    padding: 28px;
    border: 3px solid #c7ff00;
    border-radius: 16px;
    max-width: 480px;
    position: relative;
    animation: slideIn 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.close {
    color: #c7ff00;
    position: absolute;
    right: 16px;
    top: 16px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.modal h2 {
    color: #c7ff00;
    font-size: 24px;
    margin-bottom: 8px;
    text-align: center;
}

.modal-subtitle {
    color: #999;
    margin-bottom: 20px;
    text-align: center;
    font-size: 13px;
}

/* Mini banner dentro do modal */
.modal-header-image img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* Formulário */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    color: #c7ff00;
    font-size: 13px;
    margin-bottom: 6px;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 14px;
    background: #000;
    border: 2px solid #333;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #c7ff00;
    box-shadow: 0 0 12px rgba(199, 255, 0, 0.3);
}

.form-group input::placeholder {
    color: #666;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #c7ff00 0%, #a6d900 100%);
    color: #000;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(199, 255, 0, 0.5);
}

.form-disclaimer {
    text-align: center;
    color: #666;
    font-size: 12px;
    margin-top: 14px;
}

/* Footer */
footer {
    text-align: center;
    padding: 32px 0;
    margin-top: 40px;
    border-top: 1px solid #333;
}

footer p {
    color: #666;
    font-size: 14px;
    margin: 5px 0;
}

.footer-disclaimer {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
}

/* Animações */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateY(-24px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes countdown {
    0% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* Responsividade */
@media (max-width: 768px) {
    .container { padding: 12px; }
    .logo { font-size: 28px; }

    /* Em mobile o contador sai de cima da imagem */
    .counter-overlay {
        position: static;
        transform: none;
        margin: 14px auto 0;
        min-width: 0;
        width: min(90%, 320px);
    }

    .counter-number { font-size: 40px; }

    .plans-details { grid-template-columns: 1fr; }

    .bonus-section { padding: 22px; }
    .bonus-section h3 { font-size: 18px; }

    .modal-content {
        margin: 8% auto;
        padding: 22px 16px;
        width: 95%;
        max-width: 420px;
    }

    .cta-button {
        padding: 16px 22px;
        font-size: 14px;
    }
}

@media (min-width: 1200px) {
    /* Em telas muito grandes, mantém as imagens contidas */
    .banner-image, .plans-image { max-width: 560px; }
    .main-banner, .plans-section { max-width: 640px; }
}