/* Importando uma fonte moderna parecida com a do site */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,700;0,900;1,800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #000000;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Barra do Cronometro */
.top-bar {
    background-color: #39b54a;
    /* Verde inspirado na barra de frete do site */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: nowrap;
    text-align: center;
    white-space: nowrap;
    padding: 12px 10px;
    font-size: clamp(10px, 2.7vw, 14px);
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.timer {
    font-weight: 900;
    font-size: clamp(12px, 3.4vw, 18px);
    margin-left: 2px;
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    line-height: 1.1;
}

.timer-label-mobile {
    display: none;
}

/* Conteudo Principal */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Logo */
.logo {
    max-width: 120px;
    margin-bottom: 30px;
}

/* Textos de Oferta */
h1 {
    font-size: 2.2rem;
    font-weight: 900;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 10px;
    text-transform: uppercase;
}

h2 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #cccccc;
    margin-bottom: 40px;
}

/* Caixa do Cupom */
.coupon-container {
    background-color: #111111;
    border: 2px dashed #39b54a;
    padding: 20px 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    width: 100%;
}

.coupon-code {
    font-size: 2.5rem;
    font-weight: 900;
    color: #39b54a;
    letter-spacing: 2px;
}

/* Botao de Acao */
.cta-button {
    background-color: #39b54a;
    color: #ffffff;
    border: none;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(57, 181, 74, 0.3);
}

.cta-button:hover {
    background-color: #2e963c;
    transform: translateY(-2px);
}

.cta-button.success {
    background-color: #ffffff;
    color: #39b54a;
}

.onion-code-link {
    text-decoration: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease, transform 0.2s ease;
}

.onion-code-link:hover {
    color: #39b54a; /* Verde da On Street */
    transform: translateY(-1px);
}

.onion-code-name {
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: lowercase;
}

.footer-bottom {
    background-color: #000000;
    color: #ffffff;
    padding: 15px 20px;
    border-top: 1px solid #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 11px;
    gap: 15px;
    margin-top: 20px;
}

.footer-copy {
    opacity: 0.7;
}

.footer-credit {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-credit-label {
    opacity: 0.6;
}

/* Rodape */
footer {
    background-color: #0a0a0a;
    border-top: 1px solid #222;
    padding: 40px 20px 20px;
    width: 100%;
}

/* Responsividade */
@media (max-width: 600px) {
    .timer-label-desktop {
        display: none;
    }

    .timer-label-mobile {
        display: inline;
    }

    .top-bar {
        padding: 10px 8px;
        gap: 5px;
    }

    .timer {
        padding: 2px 6px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .coupon-code {
        font-size: 2rem;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }

    .footer-copy,
    .footer-credit {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

