/* Variáveis CSS para cores personalizadas */
:root {
    --footer-custom-dark-green: #192554;
    /* Cor de fundo da seção de newsletter */
    --footer-custom-light-green: #5c92f5;
    /* Cor do botão Subscribe */
    --footer-custom-light-gray: #f8f9fa;
    /* Cor de fundo geral do footer */
    --footer-text-gray: #6c757d;
    /* Cor do texto geral */
    --footer-text-white: #ffffff;
    /* Cor do texto dentro da seção escura */
}

body {
    background-color: var(--footer-custom-light-gray);
    /* Para simular o fundo da imagem */
}

.footer-section {
    background-color: var(--footer-custom-dark-green);
    padding: 4rem 0;
    border-radius: 1rem;
    /* Borda arredondada */
    margin: 2rem auto;
    /* Centralizar e dar um espaçamento */
    /*max-width: 1200px; /* Largura máxima para se aproximar do layout da imagem */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Sombra sutil */
}

.footer-section h2 {
    color: var(--footer-text-white);
    font-size: 2.2rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--footer-text-white);
    font-size: 1.1rem;
    line-height: 1.6;
}

.footer-section .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--footer-text-white);
    padding: 0.8rem 1rem;
    border-radius: 0.5rem;
}

.footer-section .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section .btn-subscribe {
    background-color: var(--footer-custom-light-green);
    color: var(--footer-custom-dark-green);
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    transition: background-color 0.3s ease;
}

.footer-section .btn-subscribe:hover {
    background-color: #aec9fa;
    /* Um pouco mais escuro no hover */
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--footer-text-white);
}

/* Seção inferior do rodapé */
.bottom-footer {
    background-color: var(--footer-custom-light-gray);
    padding: 3rem 0;
    color: var(--footer-text-gray);
}

.bottom-footer .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--footer-custom-dark-green);
}

.bottom-footer .logo-text span {
    color: var(--footer-custom-light-green);
    /* Cor do ícone na imagem */
}

.bottom-footer p {
    font-size: 0.9rem;
    color: var(--footer-text-gray);
    line-height: 1.5;
}

.bottom-footer ul {
    list-style: none;
    padding: 0;
    margin: 0px;
}

.bottom-footer ul li {
    margin-bottom: 0.5rem;
}

.bottom-footer ul li a {
    color: var(--footer-text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.bottom-footer ul li a:hover {
    color: var(--footer-custom-dark-green);
}

.bottom-footer h5 {
    color: var(--footer-custom-dark-green);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}