/* styles.css - Estilo aprimorado com base no tema do site */

/* Definições gerais */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Container principal */
.container {
    width: 80%;
    margin: auto;
    text-align: center;
}

/* Estilização do botão */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #00BFFF;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease-in-out;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer; /* Garante que o botão seja clicável */
}

.btn:hover {
    background-color: #28a745; /* Verde vibrante */
    transform: translateY(-2px);
}

/* Cabeçalho */
header {
    background: #222;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Rodapé */
footer {
    background: #222;
    color: white;
    padding: 10px;
    text-align: center;
}

/* Seções */
.section {
    padding: 40px;
    background: white;
    border-radius: 10px;
    margin: 20px auto;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
}

/* Ajuste para elementos específicos */
h1, h2, h3 {
    color: #007bff;
}

p {
    line-height: 1.6;
}

/* Configuração de animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.section {
    animation: fadeIn 0.5s ease-in-out;
}

/* Estilos adicionais */
#why-invest {
    text-align: center;
}

.benefits {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.benefit-item {
    max-width: 600px;
    text-align: center;
}
