@import url('https://fonts.googleapis.com/css2?family=Montserrat');

* {
    padding: 0;
    margin: 0;
    /* outline: red thin solid; */
}


:root {
    --title-size: 36px;
    --subtitle-size: 24px;
    --text-size: 18px;
    --color-blue: #2e3191;
    --color-darkblue: #0e1359;
    --color-lightblue: #d4edf9;
    --font: 'Montserrat', sans-serif;
}

body {
    background-color: var(--color-darkblue) !important;
}

h1, h2, h3, h4, h5, h6, p, button {
    font-family: var(--font);
}

@media screen and (min-width: 100rem) {
    .container {
        width: 60% !important;
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--color-blue);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-darkblue);
}

.title {
    font-size: var(--title-size);
    font-family: var(--font);
}

.subtitle {
    font-size: var(--subtitle-size);
    font-family: var(--font);
}

.sec-padding {
    padding: 70px 0;
}

._text {
    font-size: var(--text-size);
    font-family: var(--font);
}

.text-justify {
    text-align: justify;
}

[cursor="pointer"] {
    cursor: pointer;
}

.text-lb {
    color: var(--color-lightblue);
}

.title-uline {
    text-decoration: underline;
    text-underline-offset: 15px;
    text-decoration-thickness: 2px;
}

.navbar {
    height: 75px;
    transition: .5s;
    position: absolute !important;
    top: 0;
    left: 0;
    background: transparent !important;
    width: 100%;
}

.navbar.fixed-top {
    background: var(--color-blue) !important;
    position: fixed !important;
}

.navbar .navbar-brand img {
    width: 30%;
}

.sm-navbar {
    background: var(--color-blue);
    margin: 0 10px;
    height: 32px;
    width: 32px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white !important;
    font-size: 22px !important;
    transition: .5s;
    cursor: pointer;
}

#navbarNav ul li a {
    font-size: .875rem;
}
#navbarNav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 1.2rem;
}

#home .container h1 {
    font-size: 1.75rem;
}
#home .container .homeBtn {
    font-size: 1rem;
}


#clinica {
    padding: 6rem 0;
}
#clinica .container {
    width: 70%;
    display: grid;
    place-items: center;
    gap: 2rem 0;
}
#clinica .container .row h1 {
    font-size: 1.75rem;
}
#clinica .container p {
    font-size: 1rem;
}



#cuide .container h1 {
    font-size: 1.75rem;
}
#cuide .container button {
    font-size: 1rem;
}



#team {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}
#team .container {
    display: grid;
    place-items: center;
    font-family: 'Montserrat';
    gap: 3rem 0;
}
#team .container h1 {
    font-size: 1.75rem;
    color: #fff;
}
#team .container .team__wrapper {
    width: 80%;
    border-radius: 1.275rem;
    position: static;
}
#team .container .team__wrapper .swiper-button-prev::after,
#team .container .team__wrapper .swiper-button-next::after {
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
}
#team .container .team__wrapper .swiper-button-prev,
#team .container .team__wrapper .swiper-button-next {
    top: 60%;
}
#team .container .team__wrapper .swiper-button-prev {
    left: 12%;
}
#team .container .team__wrapper .swiper-button-next {
    right: 12%;
}
#team .container .team__wrapper .swiper-wrapper .doctor {
    width: 100%;
    height: 20rem;
    position: relative;
    overflow: hidden;
}
#team .container .team__wrapper .swiper-wrapper .doctor:hover .doctor__content {
    bottom: 0;
}
#team .container .team__wrapper .swiper-wrapper .doctor img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}
#team .container .team__wrapper .swiper-wrapper .doctor__content {
    width: 100%;
    height: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -35%;
    background: #2e3191;
    transition: all .25s ease-out;
    user-select: none;
}
#team .container .team__wrapper .swiper-wrapper .doctor__content span {
    font-size: .813rem;
    font-weight: 300;
    color: #fff;
}
#team .container .team__wrapper .swiper-wrapper .doctor__content .doctor__name {
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: .35rem;
    color: #fff;
}

@media screen and (min-width: 100rem) {
    #team .container .team__wrapper .swiper-button-prev {
        left: 23%;
    }
    #team .container .team__wrapper .swiper-button-next {
        right: 23%;
    }
}

@media screen and (max-width: 64rem) {
    #team {
        padding-bottom: 8.5rem;
    }
    #team .container .team__wrapper .swiper-wrapper .doctor__content {
        bottom: 0;
    }
    #team .container .team__wrapper .swiper-button-prev,
    #team .container .team__wrapper .swiper-button-next {
        top: auto;
        bottom: 2.6rem;
    }
    #team .container .team__wrapper .swiper-button-prev {
        left: 30%;
    }
    #team .container .team__wrapper .swiper-button-next {
        right: 30%;
    }
    #team .container .team__wrapper .swiper-button-prev::after,
    #team .container .team__wrapper .swiper-button-next::after {
        font-size: 1.6rem;
    }
}


#especialidades .container h1 {
    font-size: 1.75rem;
    padding-bottom: 2.5rem;
}
#especialidades .container .especialidade-card .text-container h3 {
    font-size: 1.25rem;
    font-weight: 600;
}
#especialidades .container .especialidade-card .text-container p {
    font-size: .875rem;
    font-weight: 300;
}


#harmo {
    height: 80vh !important;
}
#harmo .container h1 {
    font-size: 1.75rem;
}
#harmo .container p {
    font-size: 1.5rem;
}
#harmo .container button {
    font-size: 1rem;
}

.depoimento-title {
    font-size: 1.1rem !important;
}
#depoimentos .depoimento-text {
    font-size: .938rem !important;
    padding: 0 1rem;
}


#toxina {
    height: 85vh !important;
}
#toxina .container h1 {
    font-size: 1.75rem;
}
#toxina .container p {
    font-size: 1.5rem;
}
#toxina .container button {
    font-size: 1rem;
}


#contact {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    padding: 5.5rem 0;
    background: #d4edf9;
}
#contact .container {
    display: grid;
    grid-template-columns: 40% 30%;
    justify-content: space-around;
    align-items: center;
}
#contact .container .form__wrapper {
    display: grid;
    place-items: center start;
    gap: 1.2rem 0;  
}
#contact .container .form__wrapper .title {
    display: grid;
    place-items: center start;
    gap: .35rem 0;
}
#contact .container .form__wrapper .title h1 {
    font-size: 1.75rem;
    font-weight: 600;
}
#contact .container .form__wrapper .title p {
    font-size: .938rem;
    font-weight: 300;
}
#contact .container .form__wrapper form {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem 0;
}
#contact .container .form__wrapper form input,
#contact .container .form__wrapper form textarea {
    width: 100%;
    height: 3rem;
    padding: .5rem 1rem;
    outline: none;
    resize: none;
    border: 2px solid #0e1359;
    border-radius: .5rem;
    color: #0e1359;
    background: transparent;
}
#contact .container .form__wrapper form input::placeholder,
#contact .container .form__wrapper form textarea::placeholder {
    font-size: .875rem;
    font-weight: 400;
    font-family: 'Montserrat';
    color: #0e1359;
} 
#contact .container .form__wrapper form button {
    width: 7rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
    border-radius: .5rem;
    margin-top: .5rem;
    font-size: .875rem;
    font-family: 'Montserrat';
    color: #fff;
    background: #0e1359;
    transition: all .3s ease-out;
}
#contact .container .form__wrapper form button:hover {
    transform: translateY(-.15rem);
}
#contact .container .contact__wrapper {
    display: grid;
    place-items: center start;
    gap: 1rem 0;
}
#contact .container .contact__wrapper h2 {
    font-size: 1.25rem;
    font-weight: 600;
}
#contact .container .contact__wrapper .contact__socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 1.1rem;
}
#contact .container .contact__wrapper .contact__socials a {
    font-size: 1.85rem;
    color: #0e1359;
    transition: all .3s ease-out;
}
#contact .container .contact__wrapper .contact__socials a:hover {
    transform: translateY(-.1rem);
}
#contact .container .contact__wrapper .address {
    font-size: .875rem;
    font-family: 'Montserrat';
    text-decoration: none;
    margin-top: .5rem;
    color: #2e3191;
}
#contact .container .contact__wrapper .address span {
    font-weight: 600;
    color: #0e1359;
}
@media screen and (max-width: 64rem) {
    #contact .container {
        grid-template-columns: 1fr;
        place-items: center;
        gap: 3.5rem 0;
    }
    #contact .container .form__wrapper {
        place-items: center;
    }
    #contact .container .form__wrapper .title {
        place-items: center;
        text-align: center;
    }
    #contact .container .form__wrapper .title h1 {
        font-size: 1.5rem;
        font-weight: 600;
    }
    #contact .container .form__wrapper .title p {
        width: 85%;
        font-size: .75rem;
    }
    #contact .container .form__wrapper form {
        width: 85%;
        align-items: center;
    }
    #contact .container .contact__wrapper {
        width: 60%;
        place-items: center;
    }
}


footer {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    padding: 4rem 0 .85rem 0;
}
footer .container {
    display: grid;
    place-items: center;
    gap: 2.5rem 0;
}
footer .container img {
    width: 15%;
}
footer .container .copyrights {
    display: grid;
    place-items: center;
    text-align: center;
}
footer .container .copyrights .copy {
    display: flex;
    align-items: center;
    gap: 0 .5rem;
    font-size: .45rem;
    font-family: 'Montserrat';
    opacity: 1;
    color: rgba(255, 255, 255, 0.527);
}
footer .container .copyrights .copy img {
    width: .75rem;
        height: .75rem;
}

@media screen and (max-width: 64rem) {
    footer .container img {
        width: 35%;
    }
}
@media screen and (min-width: 100rem) {
    footer .container img {
        width: 13%;
    }
}

.nav-item {
    margin: 0 10px;
}

.nav-item a {
    color: white !important;
    font-family: var(--font);
    font-size: 18px;
    transition: 0.2s;
}

.nav-item a:hover {
    opacity: .5;
}

.sm-navbar:hover {
    transform: scale(1.2);
}

#home {
    height: 100vh;
    background: url('../imgs/IMAGENS/home.webp') no-repeat;
    background-size: cover;
}

.homeBtn {
    background: var(--color-lightblue);
    color: var(--color-blue);
    font-family: var(--font);
    font-size: 28px;
    font-weight: lighter;
    border: transparent;
    border-radius: 20px;
    padding: 10px 35px;
    width: max-content;
    margin-bottom: 25px;
    margin-top: 20px;
    transition: 0.5s;
}

.homeBtn:hover {
    transform: scale(1.1) translateX(30px);
    background-color: var(--color-blue);
    color: var(--color-lightblue);
}

#clinica {
    background-color: var(--color-blue);
}

.clinicaImg {
    width: 90%;
    border-radius: 20px;
}

#cuide {
    background: url('../imgs/IMAGENS/banner1.webp') no-repeat;
    background-size: cover;
    height: 100vh;
}

.cuideBtn {
    background-color: transparent;
    border: white thin solid;
    color: white;
    font-family: var(--font);
    font-size: 22px;
    padding: 10px 20px;
    width: max-content;
    align-self: center;
    margin-top: 20px;
    border-radius: 10px;
    transition: 0.5s;
}

.cuideBtn:hover {
    transform: scale(1.1);
    background-color: white;
    color: var(--color-blue);
}

#equipe {
    background: var(--color-darkblue);
}

.equipeCard img {
    border-radius: 100%;
    width: 300px;
}

#especialidades {
    background: var(--color-darkblue);
}

.especialidade-card {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: auto !important;
    transition: .5s;
    cursor: pointer;
}

.especialidade-card .img-container {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 100%;
    margin: 0 auto;
    transition: .5s;
}

.especialidade-card .img-container img {
    width: 60%;
}

.especialidade-card .text-container {
    width: calc(100% - 200px);
}

.especialidade-card .text-container ._text {
    font-size: 16px;
}

.mt-esp {
    margin-top: 50px !important;
}

#harmo {
    background: url('../imgs/IMAGENS/banner2.webp') no-repeat;
    background-size: cover;
    height: 100vh;
}

#harmo .harmoTitle, #harmo .title {
    color: white !important;
    font-family: var(--font);
    font-weight: lighter;
    text-align: right;
}

#depoimentos {
    background: var(--color-blue);
    height: auto;
}

#depoimentos.sec-padding {
    padding: 100px 0;
}

#depoimentos .col-md-7 {
    margin-right: 0 !important;
    padding-right: 0 !important;
}

.depoBackg {
    background: url("../imgs/ELEMENTOS/ícone-depoimentos.png") no-repeat;
    background-size: 100% 100%;
}

.depoimento-card {
    background: var(--color-darkblue);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 1px 1px 15px black;
    margin: 10px;
    height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.depoimento-card * {
    color: white !important;
    font-family: var(--font);
}

.depoimento-card img {
    width: 50% !important;
    margin: 20px 0;
}

.depoimento-title {
    text-align: center;
    font-size: 22px;
    margin: 0 !important;
}

.depoimento-text {
    font-size: 18px !important;
    margin: auto;
}

#toxina {
    background: url('../imgs/IMAGENS/banner3.webp') no-repeat;
    background-size: cover;
    height: 100vh;
}

#contato {
    background: var(--color-lightblue);
}

.no-a-styling, .no-a-styling:hover, .no-a-styling:focus, .no-a-styling:visited, .no-a-styling:active {
    text-decoration: none !important;
    color: black;
}

.gMap {
    width: 100%;
    height: 100%;
}

#contatoForm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
}

#contatoForm .form-group:first-child {
    margin-top: 0 !important;
}

#contatoForm>* {
    width: 100%;
    margin: 20px 0;
}

#contatoForm>.form-group>* {
    padding: 15px;
    font-size: 18px;
}

#contatoForm>*:last-child {
    margin-bottom: 0px;
    border-radius: 10px !important;
}

#contatoForm input[type=text], #contatoForm input[type=email], #contatoForm input[type=number] {
    height: 70px;
}

#contatoForm textarea {
    height: 150px;
    resize: none;
}

.btnSubmit {
    padding: 20px 0;
    font-size: 22px;
    background-color: var(--color-darkblue);
    color: white;
    border: none;
    border-radius: 20px;
    transition: .5s;
}

.btnSubmit:hover {
    background-color: var(--color-lightblue);
    color: var(--color-darkblue);
}

#footermenu {
    background: var(--color-blue);
    color: white;
}

#footermenu .logo {
    width: 65%;
}

.footer-sm {
    background-color: white;
    height: 42px;
    width: 42px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
    font-size: 28px;
    transition: .5s;
}

.equipe-container {
    display: flex;
    flex-direction: column;
    margin: auto !important;
    transition: .5s;
    cursor: pointer;
    width: 100%;
}

.equipe-img {
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.equipe-img img {
    width: 20rem !important;
    height: 20rem;
    border-radius: 50%;
}
.equipe-content h1 {
    width: auto;
    font-size: 22px;
    text-align: center;
    color: white;
    margin-top: 10px !important;
}

.equipe-content p {
    text-align: center;
    color: white;
}

#owl-equipe button {
    margin: 0 10px;
    padding: 10px 20px !important;
    border: none;
    background: var(--color-blue);
    border-radius: 20px;
    transition: .3s;
}

#owl-equipe button:hover {
    background: var(--color-lightblue);
    color: black;
}

.navbarsmlink, .navbarsmlink:hover, .navbarsmlink:focus, .navbarsmlink:visited, .navbarsmlink:active {
    color: white;
}

.footer-sm:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.formWaiter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.d-block {
    display: block !important;
}

.footer-sm a {
    color: var(--color-blue);
}

.footer-sm a:hover {
    color: var(--color-blue);
}

.footer-sm:first-child {
    margin-left: 0;
}

.footer-sm:first-child a {
    display: flex;
    align-items: flex-end;
    height: 100%;
    font-size: 36px;
}

.footer-sm:last-child {
    margin-right: 0;
}

.menuList {
    list-style: none;
}

.menuList {
    padding-left: 0 !important;
}

.menuList li a {
    font-family: var(--font);
    color: var(--color-lightblue);
    text-decoration: none;
}

.footertitle {
    font-family: var(--font);
    font-size: 22px;
    text-align: left;
    margin-right: 55px !important;
}

.footertitle.nom {
    margin-right: 0 !important;
}

.mobFooterAdj {
    flex-direction: column;
}
.footer-text-container {
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: center;
  
    background-color: #2e3191;
  }
  .footer-text {
    color: #fff;
    opacity: 0.5;
    font-size: 12px;
  }
  .footer-text a {
    color: #fff;
    transition: all 300ms;
  }
  .footer-text a:hover {
    opacity: 1;
    color: white;
  }

@media (min-width: 769px) {
    .deskHide {
        display: none !important;
    }

    .especialidade-card:hover .img-container {
        background: var(--color-blue);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .title {
        font-size: 28px !important;
    }

    .mobHide {
        display: none !important;
    }

    #home {
        background: url('../imgs/IMAGENS/home-mobile.webp') no-repeat;
        background-size: cover;
    }

    .navbar-brand {
        display: none;
    }

    .navbar>.container {
        justify-content: flex-end !important;
    }

    .ec-bbg {
        background: var(--color-blue) !important;
    }

    .navbar .navbar-toggler {
        margin: 0 20px;
    }

    .navbar-light .navbar-toggler {
        border: none !important;
        outline: none !important
    }

    .navbar-toggler:focus {
        outline: none !important;
        box-shadow: none !important;
    }

    .navbar .container {
        padding: 0 !important;
    }

    .navbar-light .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25 30'%3e%3cpath stroke='rgba%280, 0, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    .navbar.fixed-top .navbar-collapse.show, .navbar.fixed-top .navbar-collapse.collapsing {
        background: var(--color-blue) !important;
    }

    .nav-link {
        text-align: center !important;
    }

    .navbar-collapse .d-flex.flex-row.flex-nowrap {
        justify-content: center !important;
    }

    .navbar-collapse {
        padding-bottom: 20px;
    }

    #home .title {
        text-align: center;
        font-size: 26px !important;
    }

    .homeBtn {
        align-self: center;
        background: var(--color-lightblue);
        color: var(--color-blue);
        font-family: var(--font);
        font-size: 24px;
        font-weight: bold;
        border: transparent;
        border-radius: 8px;
        padding: 10px 20px;
        width: max-content;
        margin-bottom: 25px;
        margin-top: 20px;
        transition: 0.5s;
    }

    #home .mt-3 {
        margin-top: 0rem !important;
    }

    #clinica .container .row.mt-5 {
        flex-direction: column-reverse;
    }

    #clinica .text-white._text.text-justify {
        padding: 20px !important;
        font-size: 15px !important;
    }

    #clinica .row.mt-5 .col-md-6.d-flex.justify-content-center {
        padding: 0px !important;
    }

    #clinica .clinicaImg {
        width: 100% !important;
        height: auto !important;
        border-radius: 0 !important;
    }

    .sec-padding {
        padding: 50px 0;
    }

    #cuide {
        background: url('../imgs/IMAGENS/banner-mobile.webp') no-repeat;
        background-size: cover;
    }

    #cuide .title.fw-bolder.text-white.text-center {
        font-size: 28px !important;
    }

    .cuideBtn {
        margin-top: 10px !important;
        font-size: 18px !important;
    }

    .equipe-img img {
        width: 90% !important;
        height: 340px !important;
    }

    #equipe {
        background: url('../imgs/IMAGENS/fundo-depoimentos-mobile-20.webp') no-repeat;
        background-size: cover;
    }

    .especialidade-card {
        justify-content: center !important;
    }

    .especialidade-card .text-container {
        margin-left: 20px !important;
        display: flex;
        justify-content: center;
        /* align-items: center; */
        flex-direction: column;
        flex-wrap: wrap;
    }

    .especialidade-card .title.text-white {
        font-size: 20px !important;
    }

    .especialidade-card .text-container ._text {
        display: none;
    }

    .especialidade-card .img-container {
        margin: 0 !important;
        margin-left: 20px !important;
    }

    #especialidades .container .row.mt-5 .col-md-6.mt-esp {
        margin-top: 0px !important;
    }

    #especialidades .container .row.mt-5 .col-md-6, #especialidades .container .row.mt-5 .col-md-6.mt-esp {
        margin: 15px 0 !important;
    }

    .ec-open {
        display: block !important;
        font-size: 14px !important;
    }

    #harmo {
        background: url('../imgs/IMAGENS/banner-mobile-2-20.webp') no-repeat;
        background-size: cover;
    }

    #harmo * {
        text-align: center !important;
    }

    #harmo .title {
        font-size: 28px !important;
    }

    #harmo .cuideBtn {
        align-self: center !important;
        border-radius: 10px !important;
    }

    #depoimentos .col-md-3 {
        height: 200px !important;
    }
    
    #depoimentos .depoBackg {
        background-size: 90% 90%;
        background-position: center;
    }

    #depoimentos.sec-padding {
        padding: 50px 0;
    }

    .depoimento-card {
        box-shadow: none !important;
    }

    #depoimentos .col-md-7 {
        padding-left: 6px !important;
    }

    #depoimentos .h-100 .subtitle.fw-bold.text-white {
        text-align: center;
    }

    #toxina {
        background: url('../imgs/IMAGENS/banner-mobile-3-20.webp') no-repeat;
        background-size: cover;
        height: 80vh;
    }

    #toxina .d-flex.flex-column.justify-content-center.h-100 {
        justify-content: flex-start !important;
        margin-top: 20px;
    }

    #toxina .d-flex.flex-column.justify-content-center.h-100 .title {
        font-size: 28px !important;
        text-align: center;
    }

    #toxina .d-flex.flex-column.justify-content-center.h-100 .cuideBtn {
        align-self: center !important;
    }

    #contatoForm {
        width: 100% !important;
    }

    #contatoForm>* {
        margin: 5px 0 !important;
    }

    #contato {
        background: var(--color-lightblue) !important;
    }

    #contatoForm input {
        padding: 10px !important;
    }

    #contatoForm input[type="text"], #contatoForm input[type="email"] {
        height: 45px !important;
    }

    #contatoForm .btnSubmit {
        padding: 15px 0;
        background-color: var(--color-blue);
        margin-top: 20px !important;
    }

    .gMap {
        margin-top: 30px !important;
        height: 300px;
        margin-bottom: -7px !important;
    }

    #contato.sec-padding {
        padding-bottom: 0px !important;
    }

    .mobFooterAdj {
        flex-direction: row-reverse !important;
        flex-wrap: nowrap;
    }

    #footermenu .logo {
        width: 42% !important;
    }

    #footermenu .d-flex.flex-row.mt-4 {
        margin-top: 0px !important;
        margin-right: 10px !important;
    }

    .footer-sm:first-child a {
        font-size: 26px !important;
    }

    .footer-sm {
        height: 32px !important;
        width: 32px !important;
        margin: 0 5px !important;
        font-size: 22px !important;
    }
}