.hero {
    background: linear-gradient(to right, #1d2671, rgb(54, 52, 53));
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.cta-bottom {
    background: #2575fc;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.cta a {
    display: inline-block;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 30px;
    color: #242222;
    background-color: aliceblue;
    margin: 10px 10px 0 10px;
    transition: all 0.3s ease;
}

.cta a:hover {
    color: #f7f3f3;
    background-color: #03050a;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.footer {
    background-color: #f8f9fa;
    /* Cor de fundo suave */
    padding: 20px 0;
    margin-top: 40px;
    /* Espaço acima do footer */
    border-top: 1px solid #e9ecef;
    /* Linha separadora */
}

.footer .container {
    display: flex;
    flex-direction: row;
    /* Elementos em linha */
    justify-content: center;
    /* Centraliza horizontalmente */
    align-items: center;
    /* Alinha verticalmente */
    gap: 30px;
    /* Espaço entre os elementos */
    flex-wrap: wrap;
    /* Permite quebra de linha em telas pequenas */
}

.footer p {
    margin: 0;
    color: #2a2e31;
    font-size: 0.9rem;
}

.footer a {
    color: #0b58ca;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #08449e;
    text-decoration: underline;
}