/* VARIÁVEIS DE CORES E FONTES */
:root {
    --bg-color: #111111;
    --bg-light: #1A1A1A;
    --text-main: #FFFFFF;
    --text-muted: #CCCCCC;
    --gold-light: #F1D4B8;
    --gold-dark: #FFB862;
    --font-main: 'times new roman', sans-serif;
}

/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 0;
}

/* TIPOGRAFIA */
h1, h2, h3 {
    font-weight: 800;
    margin-bottom: 20px;
}

.destaque {
    color: var(--gold-dark);
}

.alert-text {
    color: var(--gold-dark);
}

p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* BOTÕES (GRADIENTE GOLDEN) */
.btn-primary {
    display: inline-block;
    background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    color: #111111;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 184, 98, 0.2);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(255, 184, 98, 0.4);
}

/* ANIMAÇÃO DE PULSO PARA O BOTÃO HERO */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}
.pulse-anim {
    animation: pulse 2s infinite;
}

/* VÍDEO RESPONSIVO */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    height: 0;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* SEÇÃO DE BENEFÍCIOS (GRID DE CARDS) */
.grid-3-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
}

.benefit-card img {
    margin-bottom: 20px;
    border-radius: 8px;
}

.benefit-card h3 {
    font-size: 1.3rem;
}

.benefit-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* LISTAS E PREÇOS */
.check-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.check-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-main);
}

.check-list li::before {
    content: "✔️"; 
    color: var(--gold-dark);
    margin-right: 10px;
}

.price-box {
    background-color: var(--bg-light);
    padding: 50px 30px;
    border-radius: 15px;
    border: 2px solid var(--gold-dark);
    max-width: 600px;
    margin: 0 auto;
}

.old-price {
    font-size: 1.3rem;
    color: #999;
}

.new-price-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 5px;
}

.price-value {
    font-size: 4rem;
    color: var(--gold-dark);
    margin-bottom: 5px;
}

.cash-price {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.small-text {
    font-size: 0.9rem;
    margin-top: 15px;
    margin-bottom: 0;
}

/* RODAPÉ */
footer hr {
    border-color: #333;
    margin: 20px 0;
}

footer p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}


header#topo {
    background-image: url('img/bgheade.jpg'); /* Insira o caminho da imagem aqui */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh; /* Garante que o header ocupe a tela inteira */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centraliza o conteúdo na vertical */
}

 

img.logo {
    width: 20%;
}

section#oferta {
     background-image: url('img/final6.png'); /* Defina o caminho da sua imagem */
    background-size: cover;
    background-position: center;
    min-height: 100vh; /* Garante que a seção tenha no mínimo a altura da tela */
    display: flex;
    align-items: center; /* Centraliza o container de conteúdo na vertical */
}