/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f7f9fc;
    color: #333;
    line-height: 1.6;
}

/* Cabeçalho com Logo */
.header {
    background: linear-gradient(135deg, #FFA500, #228B22, #1E90FF);
    color: white;
    text-align: center;
    padding: 2.5rem 1rem;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.logo {
    width: 220px;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.header p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* Seções Gerais */
section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-size: 1.8rem;
}

/* Grid de Benefícios e Vantagens */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.item, .v-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.item:hover, .v-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.item strong {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    color: #2c3e50;
}

.item p, .v-item p {
    text-align: left;
    margin-top: 0.5rem;
    color: #555;
}

.v-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.v-item div {
    flex: 1;
}

/* Como Funciona */
.passos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.passo {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    font-weight: bold;
    min-width: 220px;
    text-align: center;
    flex: 1;
    transition: transform 0.3s ease;
}

.passo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.passo span {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #FFA500;
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    line-height: 35px;
    font-weight: bold;
}

.passo p {
    margin-top: 0.8rem;
    font-weight: normal;
    font-size: 0.95rem;
    color: #555;
    text-align: left;
}

/* Botão Central de CTA */
.cta {
    text-align: center;
    padding: 4rem 2rem;
    margin: 2rem auto;
    border-radius: 20px;
}

.cta h2 {
    margin-bottom: 1rem;
    color: white;
}

/* Botões */
.btn {
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-laranja { background-color: #FFA500; color: white; }
.btn-verde { background-color: #228B22; color: white; }
.btn-azul { background-color: #1E90FF; color: white; }

/* FAQ */
.faq details {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq details:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq summary {
    padding: 1.2rem;
    background-color: #f1f8ff;
    cursor: pointer;
    font-weight: bold;
    list-style: none;
    position: relative;
}

.faq summary:after {
    content: '+';
    position: absolute;
    right: 1.2rem;
    font-weight: bold;
    font-size: 1.2rem;
}

.faq details[open] summary:after {
    content: '-';
}

.faq p {
    padding: 1.2rem;
    background: #f9f9f9;
    margin: 0;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    background-color: #2c3e50;
    color: white;
    margin-top: 3rem;
}

.footer a {
    color: #FFA500;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .header h1 { font-size: 2.2rem; }
    .header p { font-size: 1.1rem; }
    section { padding: 2rem 1rem; }
    .passos { flex-direction: column; }
    .passo { width: 100%; }
    .grid { grid-template-columns: 1fr; }
    .v-item { flex-direction: column; }
    .v-item i { margin-bottom: 10px; }
}