body {
    font-family: 'Montserrat';
    background-color: #FFFFFF;
}

/* Container */
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl,
.container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
}
@media(min-width: 1200px) and (max-width: 1399px) {
    .container { width: 100%; max-width: 98%; }
}
@media(min-width: 1400px) {
    .container { max-width: 1350px; }
}

/* Animações */
.animate {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.3s;
    -webkit-animation-fill-mode: both;
}
.slideIn {
    animation-name: slideIn;
    -webkit-animation-name: slideIn;
}
@keyframes slideIn {
    0% { transform: translateY(1rem); opacity: 0; }
    100% { transform: translateY(0rem); opacity: 1; }
    0% { transform: translateY(1rem); opacity: 0; }
}
@-webkit-keyframes slideIn {
    0% { -webkit-transform: translateY(1rem); -webkit-opacity: 0; }
    100% { -webkit-transform: translateY(0); -webkit-opacity: 1; }
    0% { -webkit-transform: translateY(1rem); -webkit-opacity: 0; }
}

/* Input Autocomplete Transparente */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}

/* Section Title */
.section-title {
    position: relative;
    font-family: "Montserrat Medium";
    font-size: 1.625rem;
    color: #2f3c71;
    text-align: center;
    padding-bottom: 1rem;
}
.section-title::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    margin: 0 auto;
    width: 210px;
    height: 5px;
    background: #2f3c71;
}
.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    width: 110px;
    height: 5px;
    background: #82c341;
}
.section-title span {
    font-family: "Montserrat ExtraBold";
}

/* Botão Padrão */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}
.btn:focus {
    box-shadow: none;
}

/* Botão Verde */
.btn-green {
    font-family: "Montserrat SemiBold";
    font-size: 1rem;
    height: 46px;
    color: #ffffff;
    border-color: #82c341;
    background-color: #82c341;
    border-radius: 1.5rem;
}
.btn-green:hover,
.btn-green:focus {
    background-color: #96e548;
    border-color: #96e548;
    color: #ffffff;
}

/* Botão Azul */
.btn-blue {
    font-family: "Montserrat SemiBold";
    font-size: 0.875rem;
    height: 46px;
    color: #ffffff;
    border-color: #3f7fd3;
    background-color: #3f7fd3;
    border-radius: 1.5rem;
}
.btn-blue:hover,
.btn-blue:focus {
    background-color: #529bfd;
    border-color: #529bfd;
    color: #ffffff;
}

/* Botão Azul Escuro */
.btn-dark-blue {
    font-family: "Montserrat SemiBold";
    font-size: 0.875rem;
    height: 46px;
    color: #ffffff;
    border-color: #003780;
    background-color: #003780;
    border-radius: 1.5rem;
}
.btn-dark-blue:hover,
.btn-dark-blue:focus {
    background-color: #192553;
    border-color: #192553;
    color: #ffffff;
}

/* Botão Contorno Verde */
.btn-outline-green {
    font-family: "Montserrat SemiBold";
    font-size: 1rem;
    height: 46px;
    background-color: transparent;
    border-color: #82c341;
    color: #82c341;
    border-radius: 1.5rem;
}
.btn-outline-green:hover,
.btn-outline-green:focus {
    background-color: #82c341;
    border-color: #82c341;
    color: #ffffff;
}

/* Breadcrumb */
.breadcrumb {
    padding-top: 1rem;
    margin-bottom: 2rem;
}
.breadcrumb .breadcrumb-item,
.breadcrumb .breadcrumb-item a {
    font-family: "Montserrat Medium";
    font-size: 0.75rem;
    color: #595959;
    text-decoration: none;
}
.breadcrumb .breadcrumb-item a:hover {
    color: #272727;
}
.breadcrumb-item + .breadcrumb-item {
    padding-left: 0.25rem;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    padding-right: 0.25rem;
}
@media(min-width: 1200px) {
    .breadcrumb {
        margin-bottom: 2.5rem;
    }
}

/* Navbar Info */
.navbar-info {
    background-color: #2f3c71;
    min-height: 20px;
}
.navbar-info .navbar-nav {
    display: none;
}
.navbar-info .navbar-nav .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 24px;
}
.navbar-info .navbar-nav .nav-icon {
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #82c341;
    color: #2f3c71;
    border-radius: 50%;
}
.navbar-info .navbar-nav .nav-icon.email::before {
    font: var(--fa-font-regular);
    content: "\f0e0";
    font-size: 0.75rem;
}
.navbar-info .navbar-nav .nav-icon.phone::before {
    font: var(--fa-font-solid);
    content: "\f095";
}
.navbar-info .navbar-nav .nav-icon.whatsapp::before {
    font: var(--fa-font-brands);
    content: "\f232";
    font-size: 1rem;
}
@media(min-width: 1200px) {
    .navbar-info .navbar-nav {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        padding: 0.125rem 0;
        gap: 1.5rem;
    }
    .navbar-info .navbar-nav .nav-link {
        font-family: "Montserrat Medium";
        font-size: 0.625rem;
        line-height: 1;
        color: #FFFFFF;
    }
    .navbar-info .navbar-nav .nav-link:hover {
        opacity: 0.75;
    }
}

/* Navbar */
.navbar {
    height: 110px;
    background-color: #FFFFFF;
}
.navbar .navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1030;
}
.navbar .navbar-collapse .nav-item .nav-link {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-family: "Montserrat Bold";
    font-size: 0.75rem;
    color: #2f3c71;
    margin: 0.75rem 0;
    padding: 0;
}
.navbar .navbar-collapse .nav-item.show .nav-link,
.navbar .navbar-collapse .nav-item .nav-link:hover,
.navbar .navbar-collapse .nav-item .nav-link:focus,
.navbar .navbar-collapse .nav-item .nav-link.active {
    color: #82c341;
}
.navbar .navbar-collapse .nav-item .nav-link::before {
    content: '';
    display: block;
    position: absolute;
    bottom: -3px;
    width: 0;
    height: 3px;
    background: #82c341;
    transition: width .3s;
}
.navbar .navbar-collapse .nav-item.show .nav-link::before,
.navbar .navbar-collapse .nav-item .nav-link:hover::before,
.navbar .navbar-collapse .nav-item .nav-link.active::before {
    width: 60px;
}
@media(min-width: 576px) {
    .navbar .navbar-collapse .navbar-nav {
        max-width: 540px;
        margin: 0 auto;
    }
}
@media(min-width: 768px) {
    .navbar .navbar-collapse .navbar-nav {
        max-width: 720px;
    }
}
@media(min-width: 992px) {
    .navbar .navbar-collapse .navbar-nav {
        max-width: 960px;
    }
}
@media(min-width: 1200px) {
    .navbar .navbar-brand {
        position: initial;
        left: auto;
        width: auto;
        transform: initial;
    }
    .navbar .navbar-collapse .navbar-nav {
        max-width: 100%;
        margin-right: 0;
    }
    .navbar .navbar-collapse .nav-item .nav-link {
        margin: 0 1.5rem 1.5rem;
    }
    .navbar .navbar-collapse .nav-item:last-child .nav-link {
        margin-right: 0;
    }
}
@media(max-width: 1199px) {
    .navbar .navbar-collapse {
        position: fixed;
        z-index: 1020;
        top: 0;
        right: 0;
        bottom: 0;
        left: 100%;
        height: calc(100% - 8.125rem);
        margin-top: auto;
        overflow-y: auto;
        background-color: #FFFFFF;
        transition: left .15s ease-in-out;
    }
    .navbar .navbar-collapse.show {
        left: 0;
        border-top: 1px solid #2f3c71;
        transition: left .15s ease-in-out;
    }
}

/* Navbar Dropdown */
.navbar .dropdown .dropdown-toggle::after {
    content: "\f078";
    font: var(--fa-font-solid);
    font-size: 0.75rem;
    color: #82c341;
    border: none;
    margin-left: 0.5rem;
    vertical-align: inherit;
    transition: transform 0.3s;
}
.navbar .dropdown .dropdown-toggle.active {
    color: #82c341;
}
.navbar .dropdown .dropdown-menu {
    padding: 0 1rem;
    border: none;
}
.navbar .dropdown .dropdown-menu .dropdown-item {
    position: relative;
    font-family: "Montserrat Bold";
    font-size: 0.75rem;
    font-weight: 600;
    color: #2f3c71;
    padding: 0;
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
    text-transform: uppercase;
}
.navbar .dropdown .dropdown-menu .dropdown-item::before {
    content: '';
    display: block;
    position: absolute;
    bottom: -3px;
    width: 0;
    height: 3px;
    background: #82c341;
    transition: width .3s;
}
.navbar .dropdown .dropdown-menu .dropdown-item:hover::before {
    width: 60px;
}
.navbar .dropdown .dropdown-menu .dropdown-item:hover,
.navbar .dropdown .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
    color: #82c341;
}
@media(max-width: 1199px) {
    .navbar .dropdown .dropdown-toggle::after {
        position: absolute;
        top: 0;
        right: -1rem;
        bottom: 0;
        display: flex;
        align-items: center;
    }
    .navbar .dropdown .dropdown-toggle.show::after {
        transform: rotate(180deg);
    }
}
@media(min-width: 1200px) {
    .navbar .dropdown .dropdown-menu {
        left: 1.5rem;
        min-width: 11rem;
        padding: 0.5rem 1.5rem;
        border-radius: 0.375rem;
        background-color: rgb(255, 255, 255);
        box-shadow: 0px 0px 4.95px 0.05px rgba(105, 105, 105, 0.79);
    }
    .navbar .dropdown .dropdown-menu::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 8px;
        background-color: #003780;
        border-bottom-left-radius: 0.375rem;
        border-bottom-right-radius: 0.375rem;
    }
    .navbar .dropdown.show .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

/* Navbar Menu Hamburger */
.navbar .navbar-toggler {
    position: relative;
    cursor: pointer;
    height: 21px;
    width: 28px;
    padding: 0;
    border: 0;
    box-shadow: none;
    background-color: transparent;
    z-index: 1030;
}
.navbar .navbar-toggler span {
    display: block;
    position: absolute;
    width: 28px;
    height: 3px;
    border-radius: 5px;
    background-color: #2f3c71;
    -webkit-transition: -webkit-transform 0.3s;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.navbar .navbar-toggler span:nth-child(1) { top: 0px; }
.navbar .navbar-toggler span:nth-child(2) { top: 9px; }
.navbar .navbar-toggler span:nth-child(3) { top: 18px; }
.navbar .navbar-toggler.active span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 9px;
}
.navbar .navbar-toggler.active span:nth-child(2) {
    opacity: 0;
}
.navbar .navbar-toggler.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    top: 9px;
}

/* footer */
.footer {
    position: relative;
    padding-top: 2.5rem;
    background-color: #192553;
}
.footer::before {
    content: "";
    background-image: url("../images/fundo-rodape-mobile.png");
    background-repeat: no-repeat;
    background-position: bottom left;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.footer .socials {
    margin-top: 1.5rem;
    margin-bottom: 3rem;
}
.footer .socials h5 {
    font-family: "Montserrat SemiBold";
    font-size: 1.125rem;
    color: #FFFFFF;
}
.footer .footer-title {
    display: block;
    position: relative;
    font-family: "Montserrat SemiBold";
    font-size: 1rem;
    color: #FFFFFF;
}
.footer .footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 3px;
    background: #82c341;
}
.footer .nav-info {
    position: relative;
    z-index: 1020;
}
.footer .nav-info .nav-link {
    font-family: "Montserrat Medium";
    font-size: 0.875rem;
    color: #FFFFFF;
    padding: 0;
}
.footer .nav-info a.nav-link:hover,
.footer .nav-info a.nav-link:focus {
    opacity: 0.75;
    transition: all 0.2s;
}
.footer .copyright {
    position: relative;
    border-top: 1px solid #82c341;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
    z-index: 1020;
}
.footer .copyright span {
    display: block;
    font-family: "Montserrat Medium";
    text-align: center;
    color: #FFFFFF;
}
.footer .copyright span:nth-child(1) {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}
.footer .copyright span:nth-child(2) {
    font-size: 0.75rem;
    color: #c5dcec;
}
@media(min-width: 1200px) {
    .footer {
        padding-top: 3.5rem;
    }
    .footer::before {
        background-image: url("../images/fundo-rodape.png");
    }
}

/* Icones Redes Sociais Rodapé */
.icone {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.icone.icone-redondo {
    width: 40px;
    height: 40px;
    background-color: #82c341;
    border-radius: 50%;
}
.icone.icone-redondo:hover::before {
    animation: toBottomFromTop 0.4s forwards;
    -moz-animation: toBottomFromTop 0.4s forwards;
    -webkit-animation: toBottomFromTop 0.4s forwards;
}
.icone-facebook::before {
    content: "";
    background-image: url("../images/icones/icone-facebook.png");
    background-repeat: no-repeat;
    width: 10px;
    height: 18px;
}
.icone-instagram::before {
    content: "";
    background-image: url("../images/icones/icone-instagram.png");
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
}
.icone-youtube::before {
    content: "";
    background-image: url("../images/icones/icone-youtube.png");
    background-repeat: no-repeat;
    width: 22px;
    height: 17px;
}
.icone-linkedin::before {
    content: "";
    background-image: url("../images/icones/icone-linkedin.png");
    background-repeat: no-repeat;
    width: 19px;
    height: 19px;
}
@-webkit-keyframes toBottomFromTop {
    49% { -webkit-transform: translateY(100%); }
    50% { opacity: 0; -webkit-transform: translateY(-100%); }
    51% { opacity: 1; }
}
@-moz-keyframes toBottomFromTop {
    49% { -moz-transform: translateY(100%); }
    50% { opacity: 0; -moz-transform: translateY(-100%); }
    51% { opacity: 1; }
}
@keyframes toBottomFromTop {
    49% { transform: translateY(100%); }
    50% { opacity: 0; transform: translateY(-100%); }
    51% { opacity: 1; }
}

/* Botões flutuantes */
.buttons-floating {
    position: fixed;
    bottom: 10px;
    right: 16px;
    z-index: 1030;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.buttons-floating a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    color: #FFF;
}
.buttons-floating a.btn-arrow-up {
    width: 36px;
    height: 36px;
    background-color: #003780;
}
.buttons-floating a.btn-whatsapp {
    width: 52px;
    height: 52px;
    background-color: #67d449;
}
.buttons-floating a.btn-whatsapp i {
    font-size: 1.75rem;
}
@media(min-width: 1600px) {
    .buttons-floating {
        bottom: 16px;
        right: 16px;
    }
}

/* Cookies */
.toast {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    border: none;
    z-index: 1020;
    border-radius: 0;
    background-color: rgba(7, 17, 59, 0.9);
}
.toast .toast-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 98px;
    padding: 1rem 0;
    gap: 1.5rem;
}
.toast .toast-body span {
    font-family: "Montserrat Medium";
    font-size: 1rem;
    width: 100%;
    color: #FFFFFF;
    text-align: center;
}
.toast .toast-body span a {
    text-decoration: none;
    color: #82c341;
}
.toast .toast-body span a:hover {
    text-decoration: underline;
}
.toast .toast-body .btn-toast {
    width: 100%;
    max-width: 210px;
}
@media(min-width: 992px) {
    .toast .toast-body {
        flex-direction: row;
        justify-content: space-between;
    }
    .toast .toast-body span {
        text-align: left;
    }
}
@media(min-width: 1200px) {
    .toast .container {
        max-width: 1200px;
    }
}

/* Swiper Container */
.swiper-container {
    position: relative;
}