/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Arial', sans-serif; /* Poppins dá um ar mais moderno */
}

.sub {

    font-weight: 600;
    margin-top: 20px;
}

.selo {

    height: 120px ;
}


body {
    background-color: #000000; /* Fundo escuro */
    background-image: radial-gradient(#203620 1px, transparent 1px); /* Sutil textura de fundo */
    background-size: 20px 20px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 480px; /* Levemente maior para acomodar imagens */
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px; /* Espaçamento maior entre seções */
    text-align: center;
}

/* Headline */
.headline h1 {
    font-size: 1.9rem;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 800;
}

.highlight {
    color: #32ff32; /* Verde Neon */
    display: block;
    text-shadow: 0 0 10px rgba(50, 255, 50, 0.7); /* Efeito de brilho neon */font-size: 25px;
    margin-top: 10px;
}

/* Estilo para o Mockup Principal */
.main-mockup {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.main-mockup img {
    width: 100%;
    height: auto;
    display: block;
}

/* Card de Venda */
.card {
    background: #0f1a0f;
    border: 2px solid #32ff32;
    border-radius: 15px;
    padding: 35px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 25px rgba(50, 255, 50, 0.25);
    position: relative;
}

.badge {
    background: #32ff32;
    color: #000;
    font-weight: bold;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    position: absolute;
    top: -14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card h2 {
    font-size: 2rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.subtitle {
    color: #ccc;
    margin-bottom: 25px;
    font-size: 1rem;
}

/* Nova estrutura de benefícios com imagem */
.features-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 15px;
    margin-bottom: 30px;
    text-align: left;
}

.features {
    list-style: none;
    flex: 1; /* Ocupa o espaço disponível */
}

.features li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.side-image {
    width: 190px; /* Largura da imagem lateral */
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-image img {
    max-width: 100%;
    height: auto;
}

/* Preço */
.price-container {
    margin-bottom: 30px;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #888;
    font-size: 0.99rem;
}

.old {
   margin-top:10px;
   display: block;
   color: white;
   font-size: 17px;
   font-weight: 800;
} 

.old-1 {
    
    color: red;
    padding: 6px;
    font-weight: 900;
    font-size: 14px;
    background-color: yellow;
    white-space: nowrap;
}

.current-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #32ff32;
    text-shadow: 0 0 15px rgba(50, 255, 50, 0.5);
}

/* Botão CTA estilo WhatsApp - Com Ícone */

.cta-button {
    background-color: #25d366;
    color: white;
    text-decoration: none;
    padding: 15px 20px; /* Aumentei um pouco a altura para maior área de clique */
    border-radius: 50px;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    display: flex;
    flex-direction: column; /* Organiza em linhas para melhor leitura */
    align-items: center;
    justify-content: center;
    gap: 2px;
    position: relative;
    overflow: hidden; /* Necessário para o efeito de brilho */
    animation: pulse-green 2s infinite; /* Chama a animação de pulso */
}

.cta-button strong {
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* Efeito de Brilho que passa pelo botão (Gatilho de curiosidade) */
.cta-button::after {
    content: "";
    background: rgba(255, 255, 255, 0.3);
    display: block;
    position: absolute;
    top: 0;
    left: -100px;
    width: 50px;
    height: 100%;
    transform: skewX(-25deg);
    transition: none;
    animation: shine 3s infinite;
}

/* Animação de Pulso */
@keyframes pulse-green {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Animação de Brilho */
@keyframes shine {
    0% { left: -100px; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
    background-color: #20bd5a; /* Escurece levemente no hover */
}

.whats-icon {
    width: 28px;
    height: auto;
}

footer {
    font-size: 0.85rem;
    color: #888;
    margin-top: 15px;
    padding-bottom: 10px;
}

/* Pequeno ajuste para telas muito pequenas */
@media (max-width: 380px) {
    .headline h1 { font-size: 1.6rem; }
    .card h2 { font-size: 1.7rem; }
    .current-price { font-size: 2.8rem; }
    .side-image { display: none; } /* Esconde a imagem lateral em telas micro */
}



