/* Estilos Gerais */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
.container {
    width: 80%;
    margin: auto;
    text-align: center;
}
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    color: #fff;
    background: #007BFF;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}
.btn:hover {
    background: #0056b3;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}
.hero h1 {
    font-size: 36px;
    font-weight: 600;
}
.hero p {
    font-size: 18px;
    margin: 20px 0;
}

/* Benefícios */
.benefits-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}
.benefit-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.benefit-item i {
    font-size: 24px;
    color: #007BFF;
}

/* Depoimentos */
.testimonial {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    width: 60%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.testimonial p {
    font-style: italic;
}

/* Tabela Comparativa */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
table, th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}
th {
    background: #007BFF;
    color: white;
}

/* Oferta Especial */
.call-to-action {
    background: #007BFF;
    color: white;
    padding: 40px 20px;
    border-radius: 10px;
    margin-top: 30px;
}
.call-to-action h2 {
    font-size: 28px;
}

/* FAQ */
.faq-item {
    background: white;
    padding: 15px;
    margin: 10px auto;
    width: 70%;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 18px;
}

/* Rodapé */
.footer {
    background: #222;
    color: white;
    padding: 20px;
    text-align: center;
}
.footer p {
    margin: 5px 0;
}
.footer i {
    margin-right: 5px;
    color: #007BFF;
}
