:root {
    color-scheme: only light;
}
body {
    font-family: 'Poppins';
    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;
}

/* Remove sombra de todos os Inputs */
input:focus {
    box-shadow: none!important;
}

/* Título de Seção */
.section-title {
    position: relative;
    font-family: "Poppins Bold";
    font-size: 2.25rem;
    color: #000000;
    text-align: center;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
}
.section-title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 120px;
    height: 3px;
    margin: 0 auto;
    background-color: #58ba47;
}

/* Subtítulo de Seção */
.section-subtitle {
    position: relative;
    font-family: "Poppins Medium";
    font-size: 1.125rem;
    color: #696969;
    text-align: center;
    margin-bottom: 2rem;
}

/* Botão Padrão */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    position: relative;
    width: 100%;
}
.btn:hover,
.btn:focus {
    box-shadow: none;
}

/* Botão Verde */
.btn-green {
    font-family: "Poppins SemiBold";
    font-size: 1.125rem;
    background-color: #58ba47;
    border-color: #58ba47;
    color: #ffffff;
    height: 56px;
    max-width: 480px;
    border-radius: 1.75rem;
}
.btn-green:hover,
.btn-green:focus {
    background-color: #73db29;
    border-color: #73db29;
    color: #ffffff;
}

/* Scrollbar Horizontal */
.scrollbar-h {
    background-color: #e3e3e3;
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(2rem + 2px);
    width: 100%;
    height: 7px;
    z-index: -10;
}
@media(min-width: 576px) {
    .scrollbar-h {
        max-width: 540px;
        margin: 0 auto;
    }
}
@media(min-width: 768px) {
    .scrollbar-h {
        max-width: 720px;
    }
}
@media(min-width: 992px) {
    .scrollbar-h {
        max-width: 960px;
    }
}
@media(min-width: 1200px) {
    .scrollbar-h {
        display: none;
    }
}

/* Botões Flutuantes */
.buttons-floating {
    position: fixed;
    bottom: 8px;
    right: 8px;
    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%;
}
.buttons-floating a.btn-arrow-up {
    width: 36px;
    height: 36px;
    color: #363636;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 7px 1px rgba(123, 123, 123, 0.5);
}
.buttons-floating a.btn-whatsapp {
    width: 52px;
    height: 52px;
    color: #FFFFFF;
    background-color: #67d449;
}
.buttons-floating a.btn-whatsapp i {
    font-size: 1.75rem;
}
@media(min-width: 1600px) {
    .buttons-floating {
        bottom: 16px;
        right: 16px;
    }
}

/* Modal */
.modal .modal-content .modal-header .btn-close {
    right: 0.75rem;
}
.modal .modal-content .modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

/* Navbar */
.navbar {
    height: 100px;
    background-color: #FFFFFF;
}
.navbar .navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.navbar .navbar-collapse .nav-item .nav-link {
    font-family: "Poppins Medium";
    font-size: 1rem;
    color: #000000;
    margin: 0.75rem 0;
    padding: 0;
}
.navbar .navbar-collapse .nav-item .nav-link:hover {
    color: #58ba47;
}
.navbar .navbar-collapse .nav-item:nth-child(-n + 2) .nav-link {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 48px;
}
.navbar .navbar-collapse .nav-item:nth-child(-n + 2) .nav-link:hover {
    opacity: 0.75;
}
.navbar .navbar-collapse .nav-item:nth-child(-n + 2) .nav-link .nav-text {
    font-family: "Poppins Bold";
    font-size: 0.875rem;
    color: #000000;
}
.navbar .navbar-collapse .nav-item:nth-child(-n + 2) .nav-link .nav-number {
    font-family: "Poppins Medium";
    font-size: 1rem;
    color: #484848;
}
.navbar .navbar-collapse .nav-item:nth-child(-n + 2) .nav-link .nav-icon {
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid #808080;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar .navbar-collapse .nav-item:nth-child(1) .nav-link .nav-icon::before {
    content: "";
    background-image: url("../images/icones/icone-whatsapp.png");
    height: 16px;
    width: 16px;
}
.navbar .navbar-collapse .nav-item:nth-child(2) .nav-link .nav-icon::before {
    content: "";
    background-image: url("../images/icones/icone-telefone.png");
    height: 16px;
    width: 16px;
}
@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 {
        height: 130px;
    }
    .navbar .navbar-brand {
        position: initial;
        left: auto;
        width: auto;
        transform: initial;
    }
    .navbar .navbar-collapse .navbar-nav {
        max-width: 100%;
        margin: 0 0 0 auto;
        align-items: center;
    }
    .navbar .navbar-collapse .nav-item .nav-link {
        margin: 0 1rem;
    }
    .navbar .navbar-collapse .nav-item:last-child .nav-link {
        margin-right: 0;
    }
}
@media(min-width: 1400px) {
    .navbar .navbar-collapse .nav-item .nav-link {
        margin: 0 1.5rem;
    }
    .navbar .navbar-collapse .nav-item:nth-child(2) {
        margin-right: 2.5rem;
    }
}
@media(max-width: 1199px) {
    /* Navbar Collapse */
    .navbar .navbar-collapse {
        position: fixed;
        z-index: 1020;
        top: 100px;
        left: 0;
        right: 0;
        background-color: #FFFFFF;
        box-shadow: 0px 0px 5px 0.5px rgba(122, 122, 122, 0.7);
    }
    .navbar .navbar-collapse.collapsing {
        transition: height .3s ease-out;
    }
    .navbar .navbar-collapse .navbar-nav {
        padding: 1.5rem 1rem;
    }
    .navbar .navbar-collapse .nav-item:nth-child(1) {
        order: 4;
    }
    .navbar .navbar-collapse .nav-item:nth-child(2) {
        order: 5;
    }
    /* Navbar Menu Hamburger */
    .navbar .navbar-toggler {
        position: relative;
        cursor: pointer;
        width: 28px;
        height: 21px;
        padding: 0;
        border: 0;
        box-shadow: none;
        background-color: transparent;
    }
    .navbar .navbar-toggler span {
        display: block;
        position: absolute;
        width: 28px;
        height: 3px;
        border-radius: 5px;
        background-color: #58ba47;
        -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 {
    padding-top: 3rem;
    background-color: #232323;
}
.footer span {
    font-family: "Nunito Bold";
    font-size: 1.125rem;
    color: #FFFFFF;
}
.footer .entities {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.footer .entities div:nth-child(1) {
    flex-basis: 33%;
}
.footer .entities div:nth-child(2) {
    flex-basis: 32%;
}
.footer .entities div:nth-child(3) {
    flex-basis: 19%;
}
.footer .entities div:nth-child(4) {
    flex-basis: 16%;
}
@media(min-width: 576px) {
    .footer .entities {
        gap: 2rem;
    }
}
@media(min-width: 992px) {
    .footer .entities {
        max-width: 720px;
        margin: 0 auto;
    }
    .footer .entities > * {
        flex-basis: inherit!important;
    }
}

/* Footer Copyright */
.footer .footer-copyright {
    background-color: #303030;
    margin-top: 3rem;
    padding: 1.125rem 0;
}
.footer .footer-copyright span {
    font-family: "Poppins";
    font-size: 0.875rem;
    color: #FFFFFF;
    text-align: center;
    line-height: 1.25;
}
.footer .footer-copyright .developed-by span {
    color: #e8e8e8;
    margin-top: 0.25rem;
}
@media(min-width: 1200px) {
    .footer .footer-copyright .copyright {
        margin: 0 auto;
        max-width: 980px;
        text-align: center;
    }
    .footer .footer-copyright .copyright span:nth-child(2)::before,
    .footer .footer-copyright .copyright span:nth-child(4)::before {
        content: "-";
    }
}

/* Footer Icone Redes Sociais */
.footer .socials .icone {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 50%;
}
.footer .socials .icone:hover::before {
    animation: toBottomFromTop 0.4s forwards;
    -moz-animation: toBottomFromTop 0.4s forwards;
    -webkit-animation: toBottomFromTop 0.4s forwards;
}
.footer .socials .icone-facebook::before {
    content: "";
    background-image: url("../images/icones/icone-facebook.png");
    background-repeat: no-repeat;
    width: 10px;
    height: 18px;
}
.footer .socials .icone-instagram::before {
    content: "";
    background-image: url("../images/icones/icone-instagram.png");
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
}
@-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; }
}
.g-recaptcha > div {
    margin: 0 auto 20px auto !important;
}