/* ----- POPPINS FONT Link ----- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Display:ital,wght@0,100..900;1,100..900&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');


/* ----- VARIABLES ----- */
:root {
    --body-color: rgb(250, 250, 250);
    --color-white: rgb(255, 255, 255);

    --text-color-second: rgb(68, 68, 68);
    --text-color-third: rgb(30, 159, 171);

    --first-color: rgb(110, 87, 224);
    --first-color-hover: rgb(40, 91, 212);

    --second-color: rgb(110, 87, 224);
    --third-color: rgb(192, 166, 49);
    --first-shadow-color: rgba(0, 0, 0, 0.1);

    --color1: #829E85;
    --color2: #C3D8BF;
    --color3: #FFFCF8;
    --color4: #E3D6BC;
    --color5: #A68458;

}

/* ----- BASE ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* ----- SMOOTH SCROLL ----- */
html {
    scroll-behavior: smooth;
}

/* ----- CHANGE THE SCROLL BAR DESIGN ----- */
::-webkit-scrollbar {
    width: 10px;
    border-radius: 25px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 30px;
}

::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}

/* ---##-- REUSABLE CSS --##--- */

/* ----- GLOBAL BUTTON DESIGN ----- */
/* ----- GLOBAL BUTTON DESIGN ----- */
/* ----- GLOBAL BUTTON DESIGN ----- */
/* ----- GLOBAL BUTTON DESIGN ----- */
.btn {
    font-weight: 500;
    padding: 12px 20px;
    background: var(--color3);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: .4s;
}

.btn>i {
    margin-left: 10px;
}

.btn:hover {
    background: var(--color4);
    color: var(--text-color-second);
}

/* ----- GLOBAL ICONS DESIGN ----- */
/* ----- GLOBAL ICONS DESIGN ----- */
/* ----- GLOBAL ICONS DESIGN ----- */
/* ----- GLOBAL ICONS DESIGN ----- */
i {
    font-size: 17px;
}

/* ------- BASE -------- */
/* ------- BASE -------- */
/* ------- BASE -------- */
/* ------- BASE -------- */
body {
    background: linear-gradient(180deg, rgba(130, 158, 133, 1) 0%, rgba(195, 216, 191, 1) 0%, rgba(255, 252, 248, 1) 100%);
}

/* -- COMEÇO CONTAINER GERAL -- */
/* -- COMEÇO CONTAINER GERAL -- */
/* -- COMEÇO CONTAINER GERAL -- */
.container {
    width: 100%;
    position: relative;
    overflow-x: hidden;
    /* not mandatory */
}

/* -- ## --- RESUABLE CSS -- ## -- */
/* -- ## --- RESUABLE CSS -- ## -- */
/* -- ## --- RESUABLE CSS -- ## -- */
/* -- ## --- RESUABLE CSS -- ## -- */
.top-header {
    text-align: center;
    margin-bottom: em;
}

.top-header h1 {
    font-weight: 700;
    color: var(--text-color-second);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.top-header span {
    color: #999;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--color1);
    margin-bottom: 15px;
}

/* ----- NAVIGATION BAR ----- */
/* ----- NAVIGATION BAR ----- */
/* ----- NAVIGATION BAR ----- */
/* ----- NAVIGATION BAR ----- */
nav {
    position: fixed;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 90px;
    line-height: 90px;
    background: var(--color2);
    padding-inline: 9vw;
    transition: .3s;
    z-index: 100;
}

.nav-logo {
    position: relative;
}

.nav-name {
    font-size: 30px;
    font-weight: 600;
    color: var(--color1);
}

.nav-logo span {
    position: absolute;
    top: -15px;
    right: -20px;
    font-size: 5em;
    color: var(--color5);
}

.nav-menu,
.nav_menu_list {
    display: flex;
    text-transform: uppercase;
}

.nav-menu .nav_list {
    list-style: none;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    padding-inline: 15px;
    margin-inline: 20px;
}

.nav-menu-btn {
    display: none;
}

.nav-menu-btn i {
    font-size: 28px;
    cursor: pointer;
}

.active-link {
    position: relative;
    color: var(--color5);
    transition: .3;
}

.active-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    background: var(--color5);
    border-radius: 50%;
}

/* BANNER ABAIXO DO HEADER  */
/* BANNER ABAIXO DO HEADER  */
/* BANNER ABAIXO DO HEADER  */

.main-banner {
    background-image: url(/img/Quadro1.png);
    background-size: cover;
    background-position: center;
    padding: 28rem 0;
    position: relative;
    width: 100%;
    height: 100vh;
}

.main-banner-text {
    position: absolute;
    width: 100%;
    bottom: 100px;
}

.main-banner h1,
h2,
.main-banner p {
    color: #FFF;
    text-align: center;
    font-weight: bold;
    text-shadow: #000 3px 2px 3px;
}

.main-banner h1 {
    font-size: 54px;
}

.main-banner h2 {
    font-size: 32px;
}

.main-banner p {
    margin-top: 50px;
    font-size: 24px;
}

/* ALINHAMENTO SUBLOCAÇÕES */
/* ALINHAMENTO SUBLOCAÇÕES */
/* ALINHAMENTO SUBLOCAÇÕES */
.menu-flex ul {
    display: flex;
    justify-content: space-around;
}

.menu-flex li {
    color: var(--color3);
    font-size: 26px;
    font-weight: bold;
}

#text-diff p {
    text-transform: uppercase;
    font-size: 30px;
}

/* ----- WRAPPER DESIGN ----- */
.wrapper {
    padding-inline: 16vw;
}

/* ----- A CLÍNICA ----- */
/* ----- A CLÍNICA ----- */
/* ----- A CLÍNICA ----- */
.featured-box {
    position: relative;
    display: flex;
    height: 85vh;
    /* min-height: 900px; */
}

/* ----- A CLÍNICA TEXT BOX ----- */
/* ----- A CLÍNICA TEXT BOX ----- */
/* ----- A CLÍNICA TEXT BOX ----- */
.featured-text {
    position: relative;
    display: flex;
    justify-content: center;
    align-content: center;
    min-height: 80vh;
    flex-direction: column;
    width: 50%;
    padding-left: 20px;
}

.featured-text-card span {
    background: var(--color5);
    color: var(--color-white);
    padding: 6px 8px;
    font-size: 22px;
    border-radius: 5px;
}

.featured-name {
    font-size: 28px;
    font-weight: 800px;
    color: var(--color5);
    margin-block: 20px;
}

.typedText {
    text-transform: capitalize;
    color: var(--color5);
}

.featured-text-info,
.a-clinica-text {
    color: var(--color1);
    font-size: 22px;
}

.featured-text-info {
    font-size: 18px;
    margin-bottom: 30px;
    text-align: justify;
    color: var(--text-color-second);
}

/* BOTÃO MARROM INSTAGRAM e WHATSAPP */
/* BOTÃO MARROM INSTAGRAM e WHATSAPP */
/* BOTÃO MARROM INSTAGRAM e WHATSAPP */
.featured-text-btn {
    display: flex;
    gap: 10px;
}

.featured-text-btn a>.blue-btn {
    background: var(--color4);
    color: var(--text-color-second);
    padding: 12px 70px;
}

.featured-text-btn a>.blue-btn:hover {
    background: var(--color4);
    color: var(--color-white);
}

.social_icons {
    display: flex;
    margin-top: 2em;
    gap: 12px;
}

.social_icons a {
    color: #000;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.753);
    cursor: pointer;
}

.icon:hover {
    color: var(--color1);
}

/* ----- A CLÍNICA IMAGE BOX ----- */
/* ----- A CLÍNICA IMAGE BOX ----- */
/* ----- A CLÍNICA IMAGE BOX ----- */
.featured-image {
    display: flex;
    justify-content: right;
    align-content: center;
    min-height: 80vh;
    width: 50%;
}

.image {
    margin: auto 0;
    width: 520px;
    height: auto;
    animation: imgFloat 7s ease-in-out infinite;
}

.image img {
    width: 520px;
    height: auto;
    border-radius: 20px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    object-fit: contain;
}

@keyframes imgFloat {
    50% {
        transform: translateY(10px);
    }
}

/* BTN COMEÇE AQUI */
/* BTN COMEÇE AQUI */
/* BTN COMEÇE AQUI */

.scroll-btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 70px;
    gap: 5px;
    text-decoration: none;
    color: var(--color3);
    background: var(--color1);
    border-radius: 30px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}

.scroll-btn i {
    font-size: 20px;
}

/* ----- MAIN BOX ----- */
/* ----- MAIN BOX ----- */
/* ----- MAIN BOX ----- */

.section {
    padding-block: 6em;
}

.row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 50px;
}

.col {
    display: flex;
    width: 100%;
}

/* ----- VOCÊ PRECISA DE TERAPIA - BOX ----- */
/* ----- VOCÊ PRECISA DE TERAPIA - BOX ----- */
/* ----- VOCÊ PRECISA DE TERAPIA - BOX ----- */
.about-info {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-block: 30px 70px;
    padding-inline: 50px;
    width: 100%;
    background: var(--color-white);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    border-radius: 20px;
}

.about-info p {
    text-align: center;
    font-size: 15px;
    color: #777;
    margin-bottom: 20px;
}

.about-info h4 {
    text-align: center;
    margin-top: 12px;
    font-size: 16px;
    color: var(--color1);
    margin-bottom: 12px;
}

.about-btn {
    position: absolute;
    /* right: 10px; */
    bottom: 10px;
}

.about-btn button {
    background: var(--color1);
    color: var(--color-white);
    border-radius: 30px;
}

.about-btn button:hover {
    background: var(--color5);
    color: var(--color-white);
}

/* ----- ABOUT / SKILLS BOX ----- */
/* ----- ABOUT / SKILLS BOX ----- */
/* ----- ABOUT / SKILLS BOX ----- */
.skills-box {
    margin: 10px;
}

.skills-header {
    margin-bottom: 30px;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.skills-list span {
    font-size: 18px;
    background: var(--color5);
    color: var(--color-white);
    padding: 2px 10px;
    border-radius: 5px;
}

/* ----- PROJECTS BOX - EXPERIÊNCIA----- */
/* ----- PROJECTS BOX - EXPERIÊNCIA----- */
/* ----- PROJECTS BOX - EXPERIÊNCIA----- */
.project-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.project-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 30%;
    height: 250px;
    background: var(--color2);
    border-radius: 20px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    overflow: hidden;
}

.project-box>i {
    font-size: 50px;
    color: var(--color5);
    margin-bottom: 25px;
}

.project-box label {
    font-size: 15px;
    color: #777;
    text-align: center;
}

.project-box::after,
.contact-info::after {
    content: "";
    position: absolute;
    bottom: -100%;
    background: var(--color5);
    width: 100%;
    height: 100%;
    transition: .4s;
    z-index: 1;
}

.project-box:hover.project-box::after,
.contact-info:hover.contact-info::after {
    bottom: 0;
}

.project-box:hover.project-box i,
.project-box:hover.project-box>h3,
.project-box:hover.project-box>label {
    color: var(--color-white);
    z-index: 2;
}

/* PROFISSIONAIS */
/* PROFISSIONAIS */
/* PROFISSIONAIS */
.project-container-pro {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.project-box-pro {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 30%;
    height: auto;
    border-radius: 20px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    overflow: hidden;
}

.project-box-pro img {
    width: 100%;
}


/* ----- CONTACT BOX ----- */
.row-contact,
.col-contact {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.contact-info {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 30px;
    width: 100%;
    height: 450px;
    background: var(--color1);
    border-radius: 10px;
    box-shadow: 1px 8px 10px 2px var(--first-shadow-color);
    overflow: hidden;
}

.contact-info>h2 {
    color: var(--color-white);
    margin-bottom: 20px;
}

.contact-info>p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    margin-block: 5px;
}

.contact-info p>i {
    font-size: 18px;
}

.contact-info::after {
    background: var(--color4);
}

.contact-info:hover.contact-info h2,
.contact-info:hover.contact-info p,
.contact-info:hover.contact-info i {
    color: var(--color-white);
    z-index: 2;
}

.maps iframe {
    width: 650px;
    height: 450px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
}

/* ----- FOOTER BOX ----- */
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 30px;
    background: var(--color4);
    padding-block: 40px 60px;
}

.top-footer p {
    font-size: 25px;
    font-weight: 600;
}

.middle-footer .footer-menu {
    display: flex;
}

.footer_menu_list {
    list-style: none;
}

.footer_menu_list a {
    text-decoration: none;
    color: var(--text-color-second);
    font-weight: 500;
    margin-inline: 20px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    color: #fff;
}

.bottom-footer {
    font-size: 14px;
    margin-top: 10px;
}

.bottom-footer a {
    color: #fff;
}

/* RESPONSIVE */
/* RESPONSIVE */
/* RESPONSIVE */

/* ----- MEDIA QUERY == 900px / RESPONSIVE ----- */
@media only screen and (max-width: 1280px) {

    nav {
        padding-inline: 4vw;
    }
    
    .nav_menu_list{
       
    }

    .nav-name {
        font-size: 28px;
    }

    .nav-menu,
    .nav_menu_list,
    .nav-link {
        display: flex;
        text-transform: uppercase;
        font-size: 12px;
    }

    .nav-link{
        justify-content: center;
    }

    .btn {
        padding: 12px 12px;
        font-size: 10px;
    }

}


/* ----- MEDIA QUERY == 1024px / RESPONSIVE ----- */
@media only screen and (max-width: 1024px) {
    .featured-text {
        padding: 0;
    }

    .image,
    .image img {
        width: 320px;
        height: 320px;
    }
}

/* ----- MEDIA QUERY == 900px / RESPONSIVE ----- */
@media only screen and (max-width: 900px) {
    .main-banner {
        display: none;
    }

    .nav-button {
        display: none;
    }

    .nav-menu.responsive {
        left: 0;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(20px);
        width: 100%;
        min-height: 450px;
        height: 90vh;
        transition: .3s;
    }

    .nav_menu_list {
        flex-direction: column;
    }

    .nav-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .featured-box {
        flex-direction: column;
        justify-content: center;
        height: 100vh;
    }

    .featured-text {
        width: 100%;
        order: 2;
        justify-content: center;
        align-content: flex-start;
        min-height: 60vh;
    }

    .social_icons {
        margin-top: 2em;
    }

    .featured-image {
        order: 2;
        justify-content: center;
        min-height: 150px;
        width: 100%;
        margin-top: 65px;
    }

    .image,
    .image img {
        width: 150px;
        height: 150px;
    }

    .row {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 50px;
    }

    .col {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .about-info,
    .contact-info {
        width: 100%;
    }

    .project-container {
        justify-content: center;
    }

    .project-box {
        width: 80%;
    }

}

/* ----- MEDIA QUERY == 540px / RESPONSIVE ----- */
@media only screen and (max-width: 540px) {

    /* ----- WRAPPER DESIGN ----- */
    .wrapper {
        padding-inline: 9vw;
    }

    .section {
        padding-block: 5em;
    }

    /* Texto fundo marrom */
    .featured-text-card {
        margin-top: 20px;
    }

    .featured-text-card span {
        font-size: 15px;
        align-items: center;

    }

    /* Texto digitando */
    .featured-name {
        font-size: 16px;
    }

    /* O seu bem estar é a nossa missão! */
    .featured-text-info p {
        font-size: 14px;
    }

    /* Botão fundo marrom */

    .featured-text-btn {
        justify-content: center;
    }

    .featured-text-btn a>.blue-btn {
        padding: 15px;
    }

    .social_icons {
        display: none;
    }

    /* Imagem */
    .featured-image {
        margin-top: 10px;
    }

    .image,
    .image img {
        width: auto;
        height: 300px;
    }

    /* Botão fundo verde */

    .scroll-btn {
        display: none;
    }

    /* Precisa de terapia? */

    .top-header {
        text-align: center;
        margin-bottom: 1em;
    }

    .about-info {
        padding-inline: 30px;
    }

    .about-info h3 {
        font-size: 22px;
        text-align: left;
    }

    .about-info .list-ul {
        /* text-align: center; */
        font-size: 15px;
        color: #777;
        margin-bottom: 6px;
    }

    .about-info h4 {
        text-align: left;
        font-size: 14px;
    }

    .about-btn button {
        /* position: absolute; */
        /* text-align: center; */
        /* right: 10px; */
        /* bottom: 10px; */
        /* display: flex; */
        /* justify-content: center; */
        /* align-items: center; */
        /* margin: 0 auto; */
    }


    /* Caixinhas de Experiência */

    .project-box label {
        font-size: 16px;
        text-align: center;
        max-width: 90%;
    }

    /* PROFISSIONAIS */

    .project-container-pro {
        gap: 30px;
    }

    .project-box-pro {
        width: 100%;
        margin: 0 auto;
    }

    /* Localização e Contatos */
    .contact-info {
        padding: 20px 30px;
        width: 380px;
        height: 280px;
        background: var(--color1);
        border-radius: 10px;
        box-shadow: 1px 8px 10px 2px var(--first-shadow-color);
        overflow: hidden;
    }

    .row-contact {
        display: block;
    }

    .contact-info>h2 {
        font-size: 18px;
    }

    .contact-info>p {
        font-size: 14px;
    }


    .maps iframe {
        margin-top: 30px;
        width: 340px;
        height: 280px;
    }

    /* Rodapé */
    .top-footer p {
        font-size: 18px;
    }

    .middle-footer .footer-menu {
        display: block;
        gap: 10px;
    }

    .footer_menu_list a {
        margin-inline: 3px;
        font-size: 14px;
    }

    .bottom-footer {
        font-size: 12px;
        margin-top: 10px;
        text-align: center;
    }

    /* Demais */
    .project-box {
        width: 100%;
    }

    .form-inputs {
        flex-direction: column;
    }

    .input-field {
        width: 100%;
    }

}

@media only screen and (max-width: 399px) {
    /* ----- MAIN BOX ----- */
    /* ----- MAIN BOX ----- */
    /* ----- MAIN BOX ----- */

    /* .section {
        padding-block: 5em;
        height: auto;
        padding: 1px;
    }

    .row {
        display: flex;
        justify-content: space-between;
        width: 100%;
        gap: 30px;
    }

    .col {
        display: flex;
        width: 100%;
    }

    #header {
        display: flex;
        justify-content: center;
        gap: 30px;

    } */

    /* ----- WRAPPER DESIGN ----- */

    /* .wrapper {
        padding-inline: 15vw;
    } */

    /* ----- NAVIGATION BAR ----- */
    /* .nav-name {
        font-size: 24px;
    }

    .featured-box {
        padding-bottom: 90px;
    } */

    /* IMAGEM */
    /* .featured-image {
        margin-top: 90px;
    }

    .image,
    .image img {
        width: auto;
        height: 300px;
    } */

    /* TEXTO FUNDO MARROM */
    .featured-text-card {
        margin-top: 60px;
    }

    .featured-text-card span {
        font-size: 14px;
    }

    /* Texto digitando */
    /* .featured-name {
        font-size: 14px;
    } */

    /* BOTÃO MARROM INSTAGRAM e WHATSAPP */
    /* BOTÃO MARROM INSTAGRAM e WHATSAPP */
    /* BOTÃO MARROM INSTAGRAM e WHATSAPP */
    /* BOTÃO MARROM INSTAGRAM e WHATSAPP */

    .featured-text-btn {
        justify-content: center;
        margin-top: 10px;
        margin: 0 auto;
    }

    .featured-text-btn a>.blue-btn {
        padding: 8px;
        padding: 12px 10px;
        font-size: 12px;
    }

    .social_icons {
        display: none;
    }

    .featured-text-btn a {
        text-decoration: none;
    }

    .blue-btn {
        display: flex;
        align-items: center;
    }

    .blue-btn i {
        font-size: 16px;
    }

    /* BTN VERDE COMEÇE AQUI */
    /* BTN VERDE COMEÇE AQUI */
    /* BTN VERDE COMEÇE AQUI */

    .scroll-btn {
        display: none;
    }

    /* Precisa de terapia? */

    /* .top-header {
        text-align: center;
        margin-bottom: 1em;
    }

    .top-header h1 {
        margin-top: 18px;
        font-size: 22px;
    }

    .about-info {
        padding-inline: 30px;
    }

    .about-info h3 {
        font-size: 22px;
        text-align: left;
    } */

    /* .about-info .list-ul {
        font-size: 15px;
        color: #777;
        margin-bottom: 6px;
    }

    .about-info h4 {
        text-align: left;
        font-size: 14px;
    } */

    /* Caixinhas de Experiência */

    /* .project-box label {
        font-size: 16px;
        text-align: center;
        max-width: 90%;
    }
 */
    /* PROFISSIONAIS */

    /* .project-container-pro {
        gap: 30px;
    }

    .project-box-pro {
        width: 100%;
        margin: 0 auto;
    } */

    /* Localização e Contatos */

    /* #contact {
        max-width: 80%;
        align-items: center;
        margin: 0 auto;
    }

    .contact-info {
        padding: 20px 30px;
        width: 90%;
        height: 280px;
        background: var(--color1);
        border-radius: 10px;
        box-shadow: 1px 8px 10px 2px var(--first-shadow-color);
        overflow: hidden;
    }

    .row-contact {
        display: block;
    }

    .contact-info>h2 {
        font-size: 18px;
    }

    .contact-info>p {
        font-size: 14px;
    }

    .maps iframe {
        margin-top: 30px;
        width: 280px;
        height: 280px;
    } */

    /* Rodapé */

    /* .footer_menu_list a {
        font-size: 14px;
        text-transform: uppercase;

    }

    .bottom-footer p {
        font-size: 12px;
    } */

    /* Demais */

    /* .project-box {
        width: 100%;
    }

    .form-inputs {
        flex-direction: column;
    }

    .input-field {
        width: 100%;
    } */
}

/* ICONS ############################################## */

.footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 50%;
    transition: all 0.4s;
    color: #FFF;
}

#whatsapp2 i {
    font-size: 24px;
}

@media screen and (max-width: 425px) {
    .footer-link {
        height: 3.0rem;
        width: 3.0rem;
    }
}

.footer-link i {
    font-size: 1.25rem;
}


@media screen and (max-width: 425px) {
    .footer-link i {
        font-size: 1.60rem;
    }
}

.footer-link:hover {
    opacity: 0.8;
    /* transform: scale(1.1); */
}

/* ICONS FIXED */

#whatsapp2 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.5rem;
    width: 3.5rem;
    border-radius: 50%;
    transition: all 0.4s;
    color: #FFF;
    font-size: 18px;
    text-decoration: none;
    color: #FFF;
    background-color: #000;
    position: fixed;
    /* right: 35px; */
    bottom: 26px;
    box-shadow: 3px 3px 10px #333;
}

#whatsapp2 {
    background-color: #25d366;
    right: 26px;
}

@media screen and (max-width: 425px) {

    #whatsapp2 {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 3.5rem;
        width: 3.5rem;
        border-radius: 50%;
        transition: all 0.4s;
        color: #FFF;
        font-size: 18px;
        text-decoration: none;
        color: #FFF;
        background-color: #000;
        position: fixed;
        /* right: 14px; */
        bottom: 16px;
        box-shadow: 3px 3px 10px #333;
    }

    #whatsapp2 {
        background-color: #25d366;
        right: 16px;
    }
}

/* SLIDER IMAGENS */
/* SLIDER IMAGENS */
/* SLIDER IMAGENS */

section.slider {
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: auto;
    padding-top: 70px !important;
    overflow: hidden;
}

@media only screen and (min-width: 540px) {
    section.slider {
        display: none;
    }
}

@media only screen and (max-width: 540px) {
    .main-banner-text-slider {
        position: absolute;
        width: 100%;
        bottom: 100px;
    }

    .main-banner-text-slider h1,
    h2,
    .main-banner-text-slider p {
        color: #FFF;
        text-align: center;
        font-weight: bold;
        text-shadow: #000 3px 2px 3px;
    }

    .main-banner-text-slider h1 {
        font-size: 24px;
        padding: 18px;
    }

    .main-banner-text-slider h2 {
        font-size: 12px;
    }

    .main-banner-text-slider p {
        margin-top: 14px;
        font-size: 18px;
    }

    /* ALINHAMENTO SUBLOCAÇÕES */
    /* ALINHAMENTO SUBLOCAÇÕES */
    /* ALINHAMENTO SUBLOCAÇÕES */
    /* ALINHAMENTO SUBLOCAÇÕES */
    /* ALINHAMENTO SUBLOCAÇÕES */
    /* ALINHAMENTO SUBLOCAÇÕES */
    .menu-flex-slider ul {
        display: block;
        text-align: center;
        gap: 10px;
        /* justify-content: space-evenly; */
    }

    .menu-flex-slider li {
        color: var(--color3);
        font-size: 14px;
        font-weight: bold;
        /* text-decoration-line: underline; */
    }

    #text-diff-slider p {
        /* color: #; */
        /* text-shadow: #e6c6c6 3px 2px 3px; */
        text-transform: uppercase;
        font-size: 16px;
    }

}

.slider-content {
    width: 400%;
    height: auto;
    display: flex;
}

.slider-content input {
    display: none;
}

.slide-box {
    width: 25%;
    height: auto;
    position: relative;
    transition: 1.5s;
}

.slide-box img {
    width: 100%;
}

.nav-manual,
.nav-auto {
    position: absolute;
    width: 100%;
    margin-top: 180%;
    display: flex;
    justify-content: center;
}

.nav-manual .manual-btn,
.nav-auto div {
    border: 1px solid #A68458;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

.nav-manual .manual-btn:not(:last-child),
.nav-auto div:not(:last-child) {
    margin-right: 10px;
}

.nav-manual .manual-btn:hover {
    background-color: #A68458;
}

#radio1:checked~.nav-auto .auto-btn1,
#radio2:checked~.nav-auto .auto-btn2,
#radio3:checked~.nav-auto .auto-btn3,
#radio4:checked~.nav-auto .auto-btn4 {
    background-color: #A68458;
}

#radio1:checked~.primeiro {
    margin-left: 0%;
}

#radio2:checked~.primeiro {
    margin-left: -25%;
}

#radio3:checked~.primeiro {
    margin-left: -50%;
}

#radio4:checked~.primeiro {
    margin-left: -75%;
}