/* Importando a fonte Poppins */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap');


body {
    font-family: 'Montserrat', sans-serif;
    background-color: #644F63; /* Fundo preto */
    color: white;
    margin: 0;
    padding: 0;
}

/* Faixa verde no topo */
.top-banner {
    background-color: #24a041;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

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

/* Container geral */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Logo */
.logo {
    max-width: 200px;
    margin-bottom: 20px;
}

/* Título principal */
h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Subheadline */
.subheadline {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 20px;
    color: #fff;
}

/* Formulário e imagem lado a lado */
.form-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

/* Formulário */
form {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 340px;
    display: flex;
    flex-direction: column;
}

/* Campos do formulário */
input {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 4px;
    border: 1px solid #ccc;
}

/* Botão principal */
button {
    background: #24a041;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: #1e8a37;
}

/* Texto de segurança abaixo do botão */
.security-text {
    font-size: 10px;
    color: #000;
    font-weight: normal;
    text-align: center;
    margin-top: 5px;
    line-height: 1.2;
}

/* Imagem da especialista */
.expert-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 0px; /* ou 0 se quiser sem arredondar */
    object-fit: contain;
}

/* Seção de aprendizado */
.content {
    background-color: #C2B3BB;
    padding: 30px;
    text-align: center;
    color: #000;
}

/* Título da seção */
h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Cards */
.cards {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Estilos dos cards */
.card {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    width: 250px;
    box-shadow: 0px 4px 10px rgba(91, 44, 43, 0.08);    
    font-size: 14px;
    font-weight: normal;
    color: #000;
}

/* Rodapé */
footer {
    background: #fff;
    color: #000;
    padding: 40px 20px;
    text-align: center;
}

/* Rodapé com logo e informações */
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Espaçamento entre os itens */
}

/* Logo do rodapé */
.footer-logo {
    max-width: 250px;
}

/* Informações sobre a empresa */
.footer-company-info p {
    font-size: 14px;  /* Tamanho da fonte maior que o texto dos resultados */
    margin: 0;
}

/* Informações no rodapé */
.footer-info-text {
    font-size: 11px;
    text-align: center;
    max-width: 80%;
    margin-top: 10px;
}

/* Texto de direitos autorais */
.footer-direitos {
    font-size: 14px;
    margin-top: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .form-container {
        flex-direction: column;
    }

    .expert-img {
        margin-top: 20px;
    }

    .footer-container {
        gap: 15px;
    }

   .card {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    width: 300px;
    box-shadow: 0px 4px 10px rgba(91, 44, 43, 0.08);    
    font-size: 18px;
    font-weight: normal;
    color: #000;
}


}

