* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f6fef6;
    color: #1a1a1a;
    line-height: 1.6;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #dfffe0 0%, #f6fef6 100%);
}

.hero h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.hero p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.cta {
    display: inline-block;
    padding: 16px 32px;
    background: #2ecc71;
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: background 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.cta:hover {
    background: #27ae60;
}

/* SEÇÕES */
.mini-historia,
.dor,
.historia,
.recebe,
.oferta,
.provas {
    padding: 60px 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.mini-historia h2,
.dor h2,
.historia h2,
.recebe h2,
.oferta h2,
.provas h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.mini-historia p,
.dor p,
.historia p,
.recebe p,
.oferta p,
.provas p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

/* LISTAS */
ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

ul li {
    padding: 12px 0;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
}

ul li:last-child {
    border-bottom: none;
}

/* PROVAS */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.grid img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.grid img:hover {
    transform: scale(1.05);
}

/* PREÇO */
.preco {
    font-size: 28px;
    font-weight: 700;
    color: #2ecc71;
    margin: 20px 0;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 24px;
    }

    .mini-historia h2,
    .dor h2,
    .historia h2,
    .recebe h2,
    .oferta h2,
    .provas h2 {
        font-size: 22px;
    }

    .grid {
        grid-template-columns: 1fr;
    }
}