@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/PlusJakartaSans.ttf");
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Regular.ttf");
}

.btn-danger {
    font-family: Inter;
    font-size: 15px;
    font-weight: 600;
    line-height: 18.15px;

    padding: 15px;
    width: 264px;
    height: 48px;
    background-color: #AB0202 !important;
    border: 1px solid #AB0202 !important;
    border-radius: 4px;
}

span.icone-qms {
    padding: 1rem;
    background: #ff0000;
    margin: 2rem auto 0;
    position: relative;
    color: #fff;
    border-radius: 15px !important;
}

.first {
    padding-left: 20px;
    padding-right: 20px
}

h1.fw-bold {
    font-family: Plus Jakarta Sans !important;
    font-size: 40px;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -0.03em;
}


p.text-danger {
    font-family: Plus Jakarta Sans;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -0.02em;
}

p.text-dark {
    font-family: Plus Jakarta Sans;
    font-size: 20px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.02em;
    color: #596780 !important;
}


h1.title-pilares {
    font-family: Plus Jakarta Sans !important;
    font-size: 24px;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -0.03em;
}

p.text-pilares {
    font-family: Plus Jakarta Sans;
    font-size: 16px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.02em;
    color: #596780 !important;
}


/* FOOTER */

footer {
    padding: 50px;
    background-color: #AB0202;
}

.footer-link {
    font-family: Inter;
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
    text-align: left;
    color: white;
    text-decoration: none
}

.footer-button {
    width: 44px;
    height: 44px;
    padding: 12px;
    gap: 10px;
    border-radius: 5px;
    opacity: 0px;
    background-color: #AE1707;
    border: 1px solid #AE1707;
    color: white
}

.footer-button i {
    margin-top: -10px !important;
}

.footer-text {
    font-family: Inter;
    font-size: 24px;
    font-weight: 400;
    line-height: 27px;
}

hr {
    background-color: #AE1707;
}

#form {
    width: 100%;
    max-width: 1200px;
    /* Largura máxima do formulário */
    margin: auto;
    /* Centraliza o formulário */
}

#associacao-field {
    visibility: hidden;
    /* Esconde, mas mantém o espaço reservado */
    opacity: 0;
    /* Torna invisível */
    height: 0;
    /* Impede que o campo ocupe altura */
    overflow: hidden;
    /* Evita que o conteúdo cause rolagem */
    transition: opacity 0.3s ease, height 0.3s ease;
    /* Animação suave */
}

#associacao-field.show {
    visibility: visible;
    opacity: 1;
    height: auto;
    /* Exibe o campo normalmente */
}

@media (max-width: 767px) {
    .btn-danger {
        padding: 0px;
    }

    span.icone-qms {
        margin-top: -20px !important;
        padding: 0.7rem;
        width: 100% !important;
        background: #ff0000;
        position: relative;
        color: #fff;
    }

    .first {
        padding-left: 14.5px !important;
        padding-right: 14.5px !important;
    }

    p.text-danger {
        font-size: 12px;
        line-height: 20px;
    }

    p.text-dark {
        font-size: 12px;
        line-height: 20px;
        color: #000000;
    }

    h1.fw-bold {
        font-size: 20px;
        line-height: 35px;
    }

    p.text-pilares {
        font-size: 12px;
        line-height: 20px;
        color: #000000;
    }

    h1.title-pilares {
        font-size: 20px;
        line-height: 35px;
    }

    /* FOOTER */
    .footer-text {
        font-size: 14px;
        text-align: center;
    }

    .footer-link {
        font-size: 14px;
    }

    footer {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center;
    }
}

@media (min-width: 1400px) {
    .container {
        width: 1200px !important;
    }
}