
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background: #f4f6fc;
    color: #333;
}
.header-pequeno {
    background: #fff;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.logo {
    width: 80px;
}
.hero {
    padding: 10px 20px 0 20px;
}
.hero h1 {
    font-size: 1.8em;
    line-height: 1.3em;
    margin-bottom: 10px;
}
.destaque {
    color: #7c3aed;
}
.banner {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    margin-top: 10px;
}
.oferta-box {
    border: 2px solid #3b82f6;
    border-radius: 12px;
    padding: 20px 15px;
    background: #fff;
    max-width: 350px;
    margin: 20px auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.oferta-box h2 {
    color: #16a34a;
    font-size: 2em;
    margin: 10px 0;
}
.oferta-box .sub {
    margin-top: 5px;
    color: #555;
}
.riscado {
    text-decoration: line-through;
    color: #999;
}
.btn {
    background: #22c55e;
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    display: inline-block;
    margin-top: 15px;
    transition: 0.3s;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.bounce {
    animation: bounce 1.5s infinite;
}
.selo {
    margin-top: 10px;
    width: 80px;
}
.beneficios-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px auto;
    flex-wrap: wrap;
    max-width: 800px;
}
.beneficio {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    width: 220px;
}
.beneficio img {
    width: 60px;
    margin-bottom: 10px;
}
.detalhes {
    padding: 40px 20px;
}
.bloco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.bloco.reverse {
    flex-direction: row-reverse;
}
.bloco img {
    width: 300px;
    border-radius: 10px;
}
.texto {
    max-width: 500px;
    text-align: left;
}
.texto h2 {
    color: #4b5563;
}
.texto ul {
    margin-top: 10px;
    padding-left: 20px;
    text-align: left;
}
.texto ul li {
    margin-bottom: 5px;
}
footer {
    background: #1f2937;
    color: #ccc;
    padding: 15px;
    font-size: 0.8em;
    margin-top: 20px;
}
