*{
    font-family: Montserrat, sans-serif;
}

/* Estilo básico para telas maiores */
/* Menu de navegação */
.navbar-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    background-color: #09233d;
    /* Azul escuro */
    padding: 20px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    /* Sutil para destacar o menu */
    position: fixed;
    /* Torna o menu fixo */
    top: 0;
    left: 0;
    width: 100%;
    /* Garante que ocupe toda a largura da página */
    z-index: 1000;
    /* Coloca o menu acima de outros elementos */
}

.links {
    display: flex;
    gap: 30px;
    /* Espaçamento entre os links */
    justify-content: center;
    /* Mantém os links centralizados */
}

.navbar-menu a {
    padding: 12px 20px;
    color: white;
    /* Contraste claro para os links */
    text-decoration: none;
    font-size: 15px;
    font-family: Montserrat, sans-serif;
    font-weight: bold;
    border-radius: 5px;
    /* Deixa os links levemente arredondados */
    transition: background-color 0.3s ease;
    /* Transição suave ao hover */
}

.navbar-menu a:hover {
    background-color: #afd2f5;
    /* Azul intermediário para hover */
    color: #09233d;
}

.active-link {
    background-color: #406891;
    /* Azul vibrante para destacar o link ativo */
}

.hamburger-menu {
    display: none;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .navbar-menu {
        flex-direction: column;
        /* Alinha logo e links em coluna */
        align-items: center;
        /* Centraliza os elementos */
        gap: 20px;
        /* Reduz o espaçamento entre os elementos */
        display: flex;
    }

    .links {
        /* Oculta os links em telas pequenas */
        flex-direction: row;
        /* Links em formato vertical */
        gap: 10px;
        /* Espaçamento entre os links */
        align-items: center;
        /* Centraliza os links */
    }

    .links.show {
        display: flex;
        /* Exibe os links quando o menu estiver aberto */
    }

    .navbar-menu a {
        font-size: 14px;
        /* Reduz o tamanho da fonte para telas menores */
        padding: 10px;
    }
}

/* Responsividade para telas muito pequenas */
@media (max-width: 480px) {
    .navbar-menu {
        padding: 30px;
        display: flex;
    }

    .links {
        gap: 10px;
    }

    .navbar-menu a {
        font-size: 12px;
        /* Reduz o tamanho da fonte para telas menores */
        padding: 5px;
    }

    .navbar-menu a:bi .navbar-menu a {
        font-size: 13px;
        /* Ajusta ainda mais o tamanho da fonte */
    }
}

/*----------------------------------------------------------- contatos*/
.contato {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    max-width: 800px;
    margin: 20px auto;
    margin-top: 30px;
    background-color: #e7ebef;
    border-radius: 10px;
    width: 500px;
}

.conteiner-contato {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    margin: 20px auto;
}

.contato img {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    text-align: center;
}

.contato img:hover {
    /*aumenta a opacidade do logo*/
    opacity: 0.7;
    /*configura o tempo da animação*/
    animation-duration: 0.6s;
    /*cria efeitos de animação*/
    transition: 0.3s ease;
}

.contato a {
    font-weight: bold;
    text-decoration: none;
    color: #09233d;
}

.contato a:hover {
    animation-duration: 0.6s;
    transition: 0.3s ease;
    color: #406891;
}

.contato span {
    background-color: #09233d;
    border-color: #09233d;
    color: #fff;
}

.icons-contato {
    gap: 30px;
    display: flex;
    justify-content: center;
    font-size: 25px;
    margin-top: 20px;
}

.contato-span {
    margin-top: 100px;
    text-align: center;
    width: 100%;
    text-align: center;
    padding: 10px;
}

.contato-span span {
    color: #09233d;
    font-size: 50px;
    margin-bottom: 30px;
    font-weight: bold;
}

/*--------------------------------------------------------------------------------- contatos - animações*/
.contato a {
    animation-duration: 1s;
    animation-name: anima-contatos;
}

.contato h6 {
    animation-duration: 1s;
    animation-name: anima-contatos;
}

@keyframes anima-contatos {
    from {
        transform: translateY(-100%);
        /* Inicia fora da tela e escalada para 0 */
    }

    to {
        transform: translateY(0);
        /* Termina na posição original com escala normal */
    }
}

.contato img {
    animation-duration: 1s;
    animation-name: anima-img-e-span-contatos;
}

.contato span {
    animation-duration: 1s;
    animation-name: anima-img-e-span-contatos;
}

.icons-contato {
    animation-duration: 1s;
    animation-name: anima-img-e-span-contatos;
}

@keyframes anima-img-e-span-contatos {
    from {
        transform: translateX(-100%);
        /* Inicia fora da tela e escalada para 0 */
    }

    to {
        transform: translateX(0);
        /* Termina na posição original com escala normal */
    }
}

.contato-span {
    opacity: 0;
    /* Começa invisível */
    transform: translateY(50px);
    /* Começa deslocado para baixo */
    animation-duration: 1s;
    animation-name: anima-span;
    animation-fill-mode: forwards;
    /* Garante que o estado final da animação seja mantido */
}

@keyframes anima-span {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width: 768px) {
    .input-group {
        width: 50%;
    }

    .contato {
        width: 95%;
        margin-top: 20px;
    }

    .icons-contato {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .icons-contato {
        font-size: 25px;
        gap: 20px;
    }
}

@media(max-width: 768px) {
    .contato-span {
        margin-top: 100px;
        padding: 10px;
        height: auto;
    }

    .contato-span span {
        color: #09233d;
        font-size: 35px;
        margin-bottom: 30px;
        font-family: Montserrat, sans-serif;
        font-weight: bold;
        opacity: 10px;
    }
}

/* ---------------------------------------------------------------------------------------------------------- footer */

.footer {
    width: 100%;
    background-color: #09233d;
    color: #fff;
    padding: 40px 5% 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-conteiner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: inherit;
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 0.9rem;
}

.footer-produced a {
    text-decoration: none;
    color: #b6b6b6;
    transition: color 0.3s;
}

.footer-produced a:hover {
    color: #ffffff;
}

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

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

.footer-links ul li a {
    text-decoration: none;
    color: #b6b6b6;
    transition: color 0.3s;
}

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

.footer-social {
    text-align: center;
    margin-top: 20px;
}

.footer-social a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #b6b6b6;
}

@media (max-width: 768px) {
    .footer {
        background-color: #09233d;
        color: #fff;
    }

    .footer-logo h3,
    .footer-social h3 {
        color: #fff;
    }

    .footer-links ul li a {
        color: #b1b1b1;
    }

    .footer-social a {
        color: #fff;
    }

    .footer-logo p {
        font-size: 0.7rem;
    }
}

.footer-pt1 img:hover {
    opacity: 0.7;
    transition: 0.3s ease;
}

.icons-contato-footer {
    display: flex;
    justify-content: center;
    font-size: 25px;
    margin-top: 20px;
    gap: 50px;
}