@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
.footer {
    /* Cor de fundo cinza/claro da imagem */
    background-color: #f7fafc;
    /* Cor de texto padrão (um cinza escuro) */
    color: #4a5568;
    /* Padding superior/inferior para separar do conteúdo */
    padding: 50px 0 0 0;
    font-family: Arial, sans-serif;
    /* Remove margens e paddings padrões de frameworks, se existirem */
    box-sizing: border-box;
    line-height: 1.5;
}

/* CONTAINER E LAYOUT PRINCIPAL (SIMULANDO O GRID)
*/
.footer-top .container {
    /* Largura máxima para centralizar o conteúdo, ajuste conforme seu layout */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px 40px 15px; /* Espaçamento interno */
}

/* O .row para o layout de 4 colunas */
.footer-top .row {
    display: flex;
    flex-wrap: wrap; /* Permite quebras de linha em telas menores */
    margin: 0 -15px; /* Compensa o padding das colunas */
}

/* Estilo para todas as colunas */
.footer-top .row > div {
    padding: 0 15px; /* Espaçamento entre colunas */
    box-sizing: border-box;
}

/*
  AJUSTES DE LARGURA DAS COLUNAS (BASEADO EM COL-LG-X)
  Simulamos o layout de 4 colunas: (5/12 + 2/12 + 2/12 + 3/12 = 12/12)
*/
.footer-about {
    width: 41.6667%; /* 5/12 */
}

.footer-links:nth-child(2) {
    width: 16.6667%; /* 2/12 */
}

.footer-links:nth-child(3) {
    width: 16.6667%; /* 2/12 */
}

.footer-contact {
    width: 25%; /* 3/12 */
}

/*
  ESTILO DA PRIMEIRA COLUNA (LEITURAS)
*/
.footer-about .sitename {
    /* Ajustado para se parecer com o título grande da imagem */
    font-size: 2.2rem;
    color: #2c5282; /* Cor azul escura */
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.footer-about p {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 0;
}

/* Links da awesomeapi */
.footer-about > a > p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #4a5568;
    text-decoration: none;
}

/*
  ÍCONES SOCIAIS
*/
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px !important;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    /* Cor de fundo dos ícones (azul claro) */
    background-color: #906de2;
    color: white;
    text-decoration: none;
    font-size: 1.1rem; /* Tamanho do ícone */
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #2c5282; /* Mudar cor no hover */
}

/*
  ESTILO DAS COLUNAS DE LINKS E CONTATO
*/
.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    color: #2c5282;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 20px;
}

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

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #4a5568;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #2c5282;
}

/*
  INFORMAÇÕES DE CONTATO
*/
.footer-contact p {
    margin: 0 0 8px 0;
    font-size: 1rem;
}

.footer-contact strong {
    font-weight: bold;
}

.footer-contact span {
    font-weight: normal; /* Para que o valor não seja bold */
}

/*
  RODAPÉ INFERIOR (COPYRIGHT)
*/
.copyright {
    /* Linha de separação, simulando a hr */
    border-top: 1px solid #ebf4ff;
    padding: 20px 15px;
    text-align: center;
}

.copyright p {
    font-size: 0.9rem;
    color: #4a5568;
    margin: 0;
}

.copyright .sitename {
    font-weight: bold;
}

/*
  RESPONSIVIDADE (PARA TELAS MENORES)
*/
@media (max-width: 992px) {
    /* Reverte o layout para empilhar as colunas em telas menores (col-md-12) */
    .footer-about,
    .footer-contact {
        width: 100% !important;
        margin-bottom: 30px;
    }

    /* Colunas de links lado a lado (col-6) */
    .footer-links {
        width: 50% !important;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    /* Empilha todas as colunas em telas muito pequenas */
    .footer-links {
        width: 100% !important;
    }
}

/*
  SETA PARA ROLAR PARA BAIXO
*/
.scroll-down-arrow {
    position: fixed; /* Posição fixa na tela */
    right: 5vw; /* 5vw da direita */
    bottom: 13vh; /* 13vh de baixo */
    z-index: 99; /* Garante que fique sobre outros elementos */
    /* Estilização da seta (similar aos ícones sociais) */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #906de2; /* Cor de fundo azul claro */
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}
.scroll-down-arrow:hover {
    background-color: #2c5282; /* Cor mais escura no hover */
}
.scroll-down-arrow:active {
  scale: calc(0.95);
}