.main {
    height: 100vh;
    max-width: 100vw;
}

.container-home {
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 20%;
    position: relative;
    overflow: hidden;
}

.popup {
    display: none;
    position: fixed;
    top: 75%;
    left: 88%;
    width: 15%;
    height: min-content;
    transform: translate(-50%, -50%);
    background-color: rgb(255, 255, 255);
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    padding: 40px;
    border: 1px solid rgb(128, 128, 128);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.popup a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 10px;
    color: #000000;
}

.popup a p .svg-inline--fa.fa-whatsapp {
    font-size: 2em;
}


.popup p {
    color: rgb(80, 143, 147);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Roboto Slab', serif;
    text-align: center;
}

.popup button {
    border: none;
    background-color: #126557;
    width: 40%;
    height: min-content;
    font-size: 10px;
    padding: 3px;
    border-radius: 5px;
    color: #ccc;
}

.popup.show {
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    gap: 10px;

}

.container-home .slider-home {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.container-home .slider-home .slide-home {
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: slideShow 15s infinite;
}

#slide1 {
    background-image: url('../images/Slide/Banner-Site-DCEE01.png');
    background-size: auto;
}

#slide2 {
    background-image: url('../images/Slide/Banner-Site-DCEE02.png');
    background-size: cover;
    animation-delay: 5s;
}

#slide3 {
    background-image: url('../images/Slide/Banner-Site-DCEE03.png');
    background-size: cover;
    animation-delay: 10s;
}

@keyframes slideShow {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    58% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.header {
    height: 8rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background-color: transparent;
    width: 100%;
}

.container-home .cx-txt-home {
    display: inline-block;
    width: 45%;
    margin-top: -10%;
    padding: 5px 30px;
}

.container-home .cx-txt-home .titulo-home {
    padding-right: 30px;
}

.container-home .cx-txt-home .info-home {
    padding-right: 30px;
}

.container-home .cx-txt-home h1 {
    line-height: 55px;
    font-size: 3.5rem;
    margin-bottom: 5%;
    font-family: 'Roboto Slab', serif;
    font-weight: 600;
    color: rgb(80, 143, 147);
    text-align: left;
}

.container-home .cx-txt-home p {
    line-height: 25px;
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    color: #363636;
}

.container-cards {
    width: 100%;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.container-cards .card {
    width: 18%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 100%;
    margin-top: -15%;
    background-color: #ffffff;
    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 0 2px;
    transition: 0.5s;
    position: relative;
    overflow: hidden;
}

.container-cards .card::before {
    content: "";
    position: absolute;
    top: 10%;
    left: 98%;
    width: 93%;
    height: 2%;
    background-color: rgb(105, 146, 149);
    transition: left 0.5s ease;
    z-index: -1;
}

.container-cards .card:hover::before {
    left: 0;
}

.container-cards .card:hover {
    transform: scale(1.04);
}

.container-cards .card .icon {
    border: 2px solid rgb(105, 146, 149);
    height: 45%;
    width: 28%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon p {
    font-size: 30px;
    color: rgb(105, 146, 149);
}

.container-cards .card .info-card {
    width: 60%;
    padding: 10px 0px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    gap: 5px;
}

.container-cards .card .info-card h4 {
    font-family: 'Roboto Slab', serif;
    font-weight: 600;
}

.container-cards .card .info-card p {
    font-family: 'Roboto Slab', serif;
    font-size: 12px;
    font-weight: 300;
}

.container-institucional {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: 50vh;
    padding-left: 70px;
    gap: 20px;
}

@keyframes fade-in {
    to {
        opacity: 1;
    }
}

.slider-container-video {
    overflow: hidden;
}

.slider-video {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.video {
    min-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}


h2 {
    text-align: center;
    margin: 10px 0;
}

.txt-institucional {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    width: 75%;
    gap: 20px;
}

.txt-institucional .titulo-institucional {
    font-size: 30px;
    font-family: 'Roboto Slab', serif;
    font-weight: 600;
    color: rgb(105, 146, 149);
    width: 65%;
    line-height: 35px;
}

.txt-institucional .info-institucional p {
    font-family: 'Roboto Slab', serif;
    font-weight: 300;
    font-size: 13px;
    width: 75%;
    gap: 20px;
}

.txt-institucional .link-sobre {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background-color: rgb(105, 146, 149);
    border-radius: 7px;
    text-decoration: none;
    transition: all 0.5s ease;
}

.link-sobre:hover {
    background-color: #e9e9e9;
    color: rgb(105, 146, 149);
    border: 1px solid rgb(105, 146, 149);
}

.container-banner {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    height: 50vh;
    width: 100%;
}

.container-banner .banner-msg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(105, 146, 149);
    overflow-y: hidden;
    padding: 0px 50px;
    margin-top: 3%;
}

.container-banner .banner-msg .imagem-banner {
    height: 100%;
    width: 50%;
}

.container-banner .banner-msg .imagem-banner img {
    width: 100%;
    height: 120%;
}

.container-banner .banner-msg .txt-banner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    width: 50%;
    gap: 30px;
}

.container-banner .banner-msg .txt-banner .titulo-banner {
    width: 70%;
}

.container-banner .banner-msg .txt-banner .titulo-banner h3 {
    font-family: 'Roboto Slab', serif;
    font-weight: 500;
    font-size: 35px;
    line-height: 35px;
    color: #ffffff;
}

.container-banner .banner-msg .txt-banner .info-banner p {
    font-family: 'Roboto Slab', serif;
    font-size: 14px;
    font-weight: 100;
    color: #ffffff;
}

.container-atendimento {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    padding: 5% 8%;
    flex-direction: row;
    gap: 30px;
}

.container-atendimento .titulo-atendimento {
    width: 100%;
    height: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 300px;
}

.container-atendimento .titulo-atendimento h3 {
    color: rgb(105, 146, 149);
    font-size: 38px;
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
    text-align: center;
}

.container-atendimento .imagem-familia {
    height: 70%;
    width: 40%;
}

.container-atendimento .imagem-familia img {
    width: 100%;
    height: 100%;
}

.container-atendimento .atendimentos {
    width: 55%;
    height: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.container-atendimento .atendimentos .atendimento {
    width: 48%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.container-atendimento .atendimentos .atendimento .icon-atendimento {
    width: 25%;
    height: 85%;
    border: 2px solid rgb(105, 146, 149);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-atendimento .atendimentos .atendimento .icon-atendimento p {
    color: rgb(105, 146, 149);
    font-size: 35px;
}

.container-atendimento .atendimentos .atendimento .info-atendimento {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    width: 70%;
    height: 100%;
}

.container-atendimento .atendimentos .atendimento .info-atendimento h4,
.container-atendimento .atendimentos .atendimento .info-atendimento p {
    font-family: 'Roboto Slab', serif;
    font-size: 13px;
    line-height: 15px;
}

.container-atendimento .atendimentos .atendimento .info-atendimento h4 {
    font-weight: bold;
    line-height: 18px;
}

.container-atendimento .btn-agendar .agendar {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background-color: rgb(105, 146, 149);
    border-radius: 7px;
    text-decoration: none;
    transition: all 0.5s ease;
    margin-bottom: 2%;
}

.btn-agendar .agendar:hover {
    background-color: #ffffff;
    color: rgb(105, 146, 149);
    border: 1px solid rgb(105, 146, 149);
}

.container-depoimentos {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background-color: rgb(105, 146, 149);
    height: 80vh;
    width: 100%;
    margin-top: 4%;
    position: relative;
    padding-top: 10%;
}

.container-depoimentos .bg-logo {
    width: 100%;
    height: 100%;
    background: url(../images/Logo.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    opacity: 0.1;
    top: 0;
}

.slider {
    height: 40vh;
    position: relative;
    width: 70%;
    overflow: hidden;
    padding: 0px 60px;
}

.slider-container {
    display: flex;
    width: 300%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex-shrink: 0;
    width: 33.33%;
    padding: 50px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slider-buttons {
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

.slider-button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: transparent;
    margin: 0 5px;
    border: 1px solid #ffffff;
    cursor: pointer;
}

.slider-button.active {
    background-color: #126557;
    border: none;
}

.slider-control {
    position: absolute;
    top: 20%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: none;
    background-color: #ffffff;
    color: rgb(105, 146, 149);
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.3);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.slider-control.prev {
    left: 0px;
}

.slider-control.next {
    right: 0px;
}

.slider-control:hover {
    color: #555;
}

.container-depoimentos .txt-depoimentos {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    position: absolute;
    z-index: 1;
    gap: 100px;
}

.container-depoimentos .txt-depoimentos .titulo-depoimentos {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-depoimentos .txt-depoimentos .titulo-depoimentos h3 {
    color: #ffffff;
    font-family: 'Roboto Slab', serif;
    font-weight: 600;
    font-size: 38px;
}

.container-perguntas {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 90vh;
    padding-top: 5%;
}

.container-perguntas .box-perguntas {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 45%;
    height: 100%;
}

.container-perguntas .box-perguntas .titulo-perguntas {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 95%;
}

.container-perguntas .box-perguntas .titulo-perguntas h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 35px;
    text-align: left;
    color: rgb(105, 146, 149);
    font-weight: 600;
}

.container-perguntas .box-perguntas p {
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    font-size: 16px;
}

.container-perguntas .box-perguntas a {
    text-decoration: underline 2px;
}

.container-perguntas .caixa {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    width: 40%;
    margin-top: -10%;
    height: 78%;
    border-radius: 15px;
    background-color: #f4f4f4;
    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.3);
}

.container-perguntas .caixa .logo {
    width: 40%;
    height: 24%;
    margin-top: -40%;
}

.container-perguntas .caixa .logo img {
    width: 100%;
    height: 100%;
}

.container-perguntas .caixa .txt {
    height: 40%;
    padding-top: 25%;
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 8%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.container-perguntas .caixa .txt h1 {
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    line-height: 38px;
    padding-top: 28px;
}

.container-perguntas .caixa .txt h3 {
    font-family: 'Roboto Slab', serif;
    font-weight: 500;
    color: #000000;
    font-size: 22px;
    line-height: 28px;
    margin-top: 5%;
}

.container-perguntas .caixa .txt p {
    font-family: 'Roboto Slab', serif;
    line-height: 18px;
    font-size: 14px;
}

.container-perguntas .caixa .txt .link-franqueado {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background-color: rgb(105, 146, 149);
    border-radius: 7px;
    text-decoration: none;
    transition: all 0.5s ease;

}

.container-perguntas .caixa .txt .link-franqueado:hover {
    background-color: #e9e9e9;
    color: rgb(105, 146, 149);
    border: 1px solid rgb(105, 146, 149);
}

.slider .slider-container .slide p {
    color: #ffffff;
    font-family: 'Roboto Slab', serif;
    line-height: 25px;
}

.slider .slider-container .slide h4 {
    color: #ffffff;
    font-family: 'Roboto Slab', serif;
    font-weight: 600;
    line-height: 105px;
}

.acordeon {
    background-color: #fff;
    color: #444;
    padding: 18px;
    width: 100%;
    min-height: 460px;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    font-family: 'Roboto Slab', serif;
}



.acordeon .item {
    cursor: pointer;
    background-image: url(../images/logos/seta-baixo.png);
    background-repeat: no-repeat;
    background-position: top 8px right 0;
    background-size: 12px;
    border-bottom: 1px solid #ccc;
    margin: 10px 0;
    transition: transform 0.3s ease-in-out;
}

.acordeon .item:last-child {
    border-bottom: none;
}

.pergunta {
    font-size: 17px;
    font-weight: 700;
    padding-bottom: 15px;
    transition: 0.2s ease;
    width: 90%;
    font-family: 'Roboto Slab', serif;
}

.item .pergunta:hover {
    color: rgb(105, 146, 149);
}

.resposta {
    font-size: 15px;
    font-weight: 300;
    display: none;
    padding-bottom: 15px;
    font-family: 'Roboto Slab', serif;
}

.acordeon .item.ativo h2 {
    font-size: 17px;
    font-weight: 700;
}

.acordeon .item.ativo .resposta {
    display: block;
}

.acordeon .item.ativo {
    background-image: url(../images/logos/seta-cima.png);
}

@media screen and (min-width: 200px) and (max-width:600px) {

    main {
        padding-right: 0px;
    }

    .container-home {
        background-repeat: no-repeat;
        background-position: center;
        background-image: url(../images/celular2.png)
    }

    .container-home .slider-home {
        display: none;
    }

    .container-home .fixed-box {
        width: 50%;
        left: 45%;
        z-index: 99;
    }

    .popup.show {
        left: 70%;
        height: 25%;
        width: 48%;
    }

    .popup.show p {
        font-size: 10px;
    }

    .popup.show a {
        font-size: 10px;
    }

    .container-home .fixed-box-tele {
        width: 50%;
        left: 45%;
    }

    .container-home .cx-txt-home {
        width: 100%;
        margin-top: -35%;
    }

    .container-home .cx-txt-home h1 {
        font-size: 2rem;
        line-height: 35px;
    }

    .container-home .cx-txt-home p {
        line-height: 20px;
        font-family: 'Roboto Slab', serif;
        font-weight: 400;
        color: #363636;
    }

    .container-cards {
        flex-wrap: wrap;
        height: 50vh;
    }

    .container-cards .card {
        width: 48%;
        height: 30%;
    }

    .container-cards .card .info-card {
        gap: 1px;
    }

    .container-cards .card .info-card h4 {
        font-size: 12px;
    }

    .container-cards .card .info-card p {
        font-size: 8px;
        line-height: 11px;
    }

    .container-institucional {
        padding-left: 20px;
        padding-right: 20px;
        display: block;
    }

    .container-institucional .video-institucional {
        width: 100%;
        height: 35%;
        margin-bottom: 2%;
    }

    .txt-institucional {
        width: 100%;
        gap: 5px;
        display: flex;
        align-items: center;
    }

    .txt-institucional .titulo-institucional {
        font-size: 18px;
        font-family: 'Roboto Slab', serif;
        font-weight: 600;
        color: rgb(105, 146, 149);
        width: 100%;
        line-height: 23px;
    }

    .txt-institucional .info-institucional p {
        font-family: 'Roboto Slab', serif;
        font-weight: 300;
        width: 100%;
        gap: 20px;
        font-size: 11px;
        line-height: 13px;
    }

    .txt-institucional .link-sobre {
        display: inline-block;
        padding: 8px 20px;
        color: #fff;
        background-color: rgb(105, 146, 149);
        border-radius: 7px;
        text-decoration: none;
        transition: all 0.5s ease;
        font-size: 13px;
    }

    .link-sobre:hover {
        background-color: #e9e9e9;
        color: rgb(105, 146, 149);
        border: 1px solid rgb(105, 146, 149);
    }

    .container-banner .banner-msg {
        width: 100%;
        height: 85%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: rgb(105, 146, 149);
        overflow-y: hidden;
        padding: 0px 10px;
        margin-top: 18%;
    }

    .container-banner .banner-msg .txt-banner {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
        width: 60%;
        gap: 10px;
    }

    .container-banner .banner-msg .txt-banner .titulo-banner {
        width: 80%;
    }

    .container-banner .banner-msg .txt-banner .titulo-banner h3 {
        font-family: 'Roboto Slab', serif;
        font-weight: 500;
        font-size: 20px;
        line-height: 20px;
        color: #ffffff;
    }

    .container-banner .banner-msg .txt-banner .info-banner p {
        font-family: 'Roboto Slab', serif;
        font-size: 11px;
        font-weight: 100;
        color: #ffffff;
    }

    .container-banner .banner-msg .imagem-banner {
        height: 55%;
        width: 60%;
    }

    .container-atendimento {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        min-height: 100vh;
        background-color: #ffffff;
        padding: 5% 8%;
        gap: 30px;
    }

    .container-atendimento .titulo-atendimento {
        width: 100%;
        height: 10%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0px 0px;
    }

    .container-atendimento .titulo-atendimento h3 {
        color: rgb(105, 146, 149);
        font-size: 20px;
        font-weight: bold;
        font-family: 'Roboto Slab', serif;
        text-align: center;
    }

    .container-atendimento .imagem-familia {
        height: 30%;
        width: 100%;
    }

    .container-atendimento .atendimentos {
        width: 100%;
        height: max-content;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .container-atendimento .atendimentos .atendimento .icon-atendimento {
        width: 35%;
        height: 60%;
        border: 2px solid rgb(105, 146, 149);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .container-atendimento .atendimentos .atendimento .icon-atendimento p {
        color: rgb(105, 146, 149);
        font-size: 28px;
    }

    .container-atendimento .atendimentos .atendimento .icon-atendimento img {
        width: 75%;
        height: 60%;
    }

    .container-atendimento .atendimentos .atendimento .info-atendimento h4,
    .container-atendimento .atendimentos .atendimento .info-atendimento p {
        font-family: 'Roboto Slab', serif;
        font-size: 9px;
        line-height: 9px;
    }

    .container-atendimento .btn-agendar .agendar {
        display: inline-block;
        padding: 10px 20px;
        color: #fff;
        background-color: rgb(105, 146, 149);
        border-radius: 7px;
        text-decoration: none;
        transition: all 0.5s ease;
        margin-bottom: 2%;
        font-size: 10px;
    }

    .container-depoimentos {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        background-color: rgb(105, 146, 149);
        height: 55vh;
        width: 100%;
        margin-top: 4%;
        position: relative;
        padding-top: 10%;
    }

    .container-depoimentos .bg-logo {
        width: 100%;
        height: 100%;
        background: url(../images/Logo.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        opacity: 0.1;
        top: 0;
    }

    .container-depoimentos .txt-depoimentos {
        display: flex;
        align-items: center;
        justify-content: space-around;
        flex-direction: column;
        position: absolute;
        z-index: 1;
        width: 100vw;
        gap: 80px;
    }

    .container-depoimentos .txt-depoimentos .titulo-depoimentos h3 {
        color: #ffffff;
        font-family: 'Roboto Slab', serif;
        font-weight: 600;
        font-size: 18px;
    }


    .slider {
        height: 40vh;
        position: relative;
        width: 65%;
        overflow: hidden;
        padding: 0px 0px;
    }

    .slider .slider-container .slide p {
        color: #ffffff;
        font-family: 'Roboto Slab', serif;
        line-height: 12px;
        font-size: 12px;
    }

    .slider .slider-container .slide h4 {
        color: #ffffff;
        font-family: 'Roboto Slab', serif;
        font-weight: 600;
        line-height: 60px;
        font-size: 11px;
    }

    .container-perguntas {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        min-height: 100vh;
        padding-left: 1%;
        padding-right: 1%;
        padding-top: 1%;
    }

    .container-perguntas .box-perguntas {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        margin-top: 63%;
        height: 40%;
    }

    .container-perguntas .box-perguntas .titulo-perguntas h3 {
        font-family: 'Roboto Slab', serif;
        font-size: 15px;
        text-align: left;
        color: rgb(105, 146, 149);
        font-weight: 600;
    }

    .acordeon .item.ativo h2 {
        font-size: 13px;
        font-weight: 700;
    }

    .pergunta {
        font-size: 13px;
        font-weight: 700;
        padding-bottom: 15px;
        transition: 0.2s ease;
        width: 90%;
        font-family: 'Roboto Slab', serif;
    }

    .container-perguntas .box-perguntas p {
        font-family: 'Roboto Slab', serif;
        font-weight: 400;
        font-size: 13px;
    }

    .container-perguntas .caixa {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        gap: 30px;
        width: 100%;
        margin-top: 28%;
        max-height: 60%;
        border-radius: 15px;
        background-color: #f4f4f4;
        box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.3);
    }

    .container-perguntas .caixa .logo {
        width: 30%;
        height: 14%;
        margin-top: -50%;
        padding-top: 0;
    }

    .container-perguntas .caixa .logo img {
        width: 100%;
        height: 100%;
    }

    .container-perguntas .caixa .txt {
        height: 40%;
        padding-top: 100px;
        padding-left: 4%;
        padding-right: 4%;
        padding-bottom: 8%;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .container-perguntas .caixa .txt h3 {
        font-family: 'Roboto Slab', serif;
        font-weight: 500;
        color: #000000;
        font-size: 15px;
        line-height: 16px;
        margin-top: 5%;
    }

    .container-perguntas .caixa .txt p {
        font-family: 'Roboto Slab', serif;
        line-height: 14px;
        font-size: 12px;
    }

    .container-perguntas .caixa .txt .link-franqueado {
        display: inline-block;
        padding: 10px 20px;
        color: #fff;
        background-color: rgb(105, 146, 149);
        border-radius: 7px;
        text-decoration: none;
        font-size: 12px;
        transition: all 0.5s ease;
    }

    #footer_container {
        margin-top: 33%;
    }

}

@media screen and (min-width: 601px) and (max-width:768px) {

    .popup.show {
        width: 30vw;
        left: 84%;
    }

    .container-home {
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        width: 100%;
        height: 40vh;
    }

    .container-home .slider-home {
        width: 100%;
        display: flex;
        justify-content: center;
        align-content: center;
        background-size: contain;
    }

    .container-home #slide1 {
        background-size: contain;
    }

    .container-home #slide2 {
        background-size: contain;
    }

    .container-home #slide3 {
        background-size: contain;
    }

    .container-home .fixed-box {
        height: 20%;
        margin-bottom: 1px;
    }

    .container-home .fixed-box h2 {
        font-size: 8px;
    }

    .container-home .fixed-box .dropbtn {
        padding: 2px;
        font-size: 12px;
    }

    .container-home .fixed-box-tele {
        height: 20%;
    }

    .container-home .fixed-box-tele h2 {
        font-size: 8px;
    }

    .container-home .fixed-box-tele .teleconsulta {
        font-size: 12px;
    }

    .container-home .cx-txt-home {
        width: 100%;
        margin-top: -25%;
    }

    .container-home .cx-txt-home {
        padding-right: 160px;
    }

    .container-home .cx-txt-home h1 {
        font-size: 2.5rem;
        line-height: 42px;
    }

    .container-home .cx-txt-home p {
        line-height: 30px;
        font-size: 16px;
        font-family: 'Roboto Slab', serif;
        font-weight: 400;
        color: #363636;
    }

    .container-cards {
        flex-wrap: wrap;
        height: 50vh;
    }

    .container-cards .card {
        width: 48%;
        height: 30%;
    }

    .container-cards .card .info-card {
        gap: 1px;
    }

    .container-cards .card .info-card h4 {
        font-size: 14px;
    }

    .container-cards .card .info-card p {
        font-size: 13px;
        line-height: 14px;
    }

    .container-institucional {
        padding-left: 20px;
        padding-right: 20px;
        display: block;
    }

    .container-institucional .video-institucional {
        width: 100%;
        height: 35%;
        margin-bottom: 2%;
    }

    .txt-institucional {
        width: 100%;
        gap: 5px;
        display: flex;
        align-items: center;
    }

    .txt-institucional .titulo-institucional {
        font-size: 38px;
        font-family: 'Roboto Slab', serif;
        font-weight: 600;
        color: rgb(105, 146, 149);
        width: 100%;
        line-height: 43px;
    }

    .txt-institucional .info-institucional p {
        font-family: 'Roboto Slab', serif;
        font-weight: 300;
        width: 100%;
        gap: 20px;
        font-size: 16px;
        line-height: 18px;
    }

    .txt-institucional .link-sobre {
        display: inline-block;
        padding: 10px 20px;
        color: #fff;
        background-color: rgb(105, 146, 149);
        border-radius: 7px;
        text-decoration: none;
        transition: all 0.5s ease;
        font-size: 16px;
    }

    .link-sobre:hover {
        background-color: #e9e9e9;
        color: rgb(105, 146, 149);
        border: 1px solid rgb(105, 146, 149);
    }

    .container-banner .banner-msg {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: rgb(105, 146, 149);
        overflow-y: hidden;
        padding: 0px 10px;
        margin-top: 3%;
    }

    .container-banner .banner-msg .txt-banner {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
        width: 50%;
        gap: 10px;
    }

    .container-banner .banner-msg .txt-banner .titulo-banner {
        width: 80%;
    }

    .container-banner .banner-msg .txt-banner .titulo-banner h3 {
        font-family: 'Roboto Slab', serif;
        font-weight: 500;
        font-size: 25px;
        line-height: 25px;
        color: #ffffff;
    }

    .container-banner .banner-msg .txt-banner .info-banner p {
        font-family: 'Roboto Slab', serif;
        font-size: 15px;
        font-weight: 100;
        color: #ffffff;
    }

    .container-banner .banner-msg .imagem-banner {
        height: 65%;
        width: 65%;
    }

    .container-banner .banner-msg .imagem-banner img {
        width: 100%;
        height: 130%;
    }

    .container-atendimento {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        min-height: 100vh;
        background-color: #ffffff;
        padding: 5% 8%;
        gap: 30px;
    }

    .container-atendimento .titulo-atendimento {
        width: 100%;
        height: 10%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0px 0px;
    }

    .container-atendimento .titulo-atendimento h3 {
        color: rgb(105, 146, 149);
        font-size: 25px;
        font-weight: bold;
        font-family: 'Roboto Slab', serif;
        text-align: center;
    }

    .container-atendimento .imagem-familia {
        height: 35%;
        width: 100%;
    }

    .container-atendimento .atendimentos {
        width: 100%;
        height: max-content;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .container-atendimento .atendimentos .atendimento .icon-atendimento {
        width: 30%;
        height: 50px;
        border: 2px solid rgb(105, 146, 149);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .container-atendimento .atendimentos .atendimento .icon-atendimento p {
        color: rgb(105, 146, 149);
        font-size: 28px;
    }

    .container-atendimento .atendimentos .atendimento .icon-atendimento img {
        width: 32px;
        height: 32px;
    }

    .container-atendimento .atendimentos .atendimento .info-atendimento {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        width: 70%;
        gap: 2px;
        height: 100%;
    }

    .container-atendimento .atendimentos .atendimento .info-atendimento h4,
    .container-atendimento .atendimentos .atendimento .info-atendimento p {
        font-family: 'Roboto Slab', serif;
        font-size: 11px;
        line-height: 12px;
    }

    .container-atendimento .btn-agendar .agendar {
        display: inline-block;
        padding: 10px 20px;
        color: #fff;
        background-color: rgb(105, 146, 149);
        border-radius: 7px;
        text-decoration: none;
        transition: all 0.5s ease;
        margin-bottom: 2%;
        font-size: 12px;
    }

    .container-depoimentos {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        background-color: rgb(105, 146, 149);
        height: 55vh;
        width: 100%;
        margin-top: 4%;
        position: relative;
        padding-top: 10%;
    }

    .container-depoimentos .bg-logo {
        width: 100%;
        height: 100%;
        background: url(../images/Logo.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        opacity: 0.1;
        top: 0;
    }

    .container-depoimentos .txt-depoimentos {
        display: flex;
        align-items: center;
        justify-content: space-around;
        flex-direction: column;
        position: absolute;
        z-index: 1;
        gap: 80px;
    }

    .container-depoimentos .txt-depoimentos .titulo-depoimentos h3 {
        color: #ffffff;
        font-family: 'Roboto Slab', serif;
        font-weight: 600;
        font-size: 18px;
    }


    .slider {
        height: 40vh;
        position: relative;
        width: 65%;
        overflow: hidden;
        padding: 0px 0px;
    }

    .slider .slider-container .slide p {
        color: #ffffff;
        font-family: 'Roboto Slab', serif;
        line-height: 13px;
        font-size: 12px;
    }

    .slider .slider-container .slide h4 {
        color: #ffffff;
        font-family: 'Roboto Slab', serif;
        font-weight: 600;
        line-height: 60px;
        font-size: 12px;
    }

    .container-perguntas {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        min-height: 100vh;
        padding-left: 1%;
        padding-right: 1%;
        padding-top: 1%;
    }

    .container-perguntas .box-perguntas {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        margin-top: 18%;
        height: 40%;
    }

    .container-perguntas .box-perguntas .titulo-perguntas h3 {
        font-family: 'Roboto Slab', serif;
        font-size: 18px;
        text-align: left;
        color: rgb(105, 146, 149);
        font-weight: 600;
    }

    .acordeon .item.ativo h2 {
        font-size: 13px;
        font-weight: 700;
    }

    .pergunta {
        font-size: 13px;
        font-weight: 700;
        padding-bottom: 15px;
        transition: 0.2s ease;
        width: 90%;
        font-family: 'Roboto Slab', serif;
    }

    .container-perguntas .box-perguntas p {
        font-family: 'Roboto Slab', serif;
        font-weight: 400;
        font-size: 13px;
    }

    .container-perguntas .caixa {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        gap: 30px;
        width: 100%;
        margin-top: -1%;
        margin-bottom: 5%;
        max-height: 60%;
        border-radius: 15px;
        background-color: #f4f4f4;
        box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.3);
    }

    .container-perguntas .caixa .logo {
        width: 30%;
        height: 14%;
        margin-top: -15%;
        padding-top: 0;
    }

    .container-perguntas .caixa .logo img {
        width: 100%;
        height: 100%;
    }

    .container-perguntas .caixa .txt {
        height: 40%;
        padding-top: 100px;
        padding-left: 4%;
        padding-right: 4%;
        padding-bottom: 8%;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .container-perguntas .caixa .txt h3 {
        font-family: 'Roboto Slab', serif;
        font-weight: 500;
        color: #000000;
        font-size: 20px;
        line-height: 23px;
        margin-top: 5%;
    }

    .container-perguntas .caixa .txt p {
        font-family: 'Roboto Slab', serif;
        line-height: 15px;
        font-size: 13px;
    }

    .container-perguntas .caixa .txt .link-franqueado {
        display: inline-block;
        padding: 10px 20px;
        color: #fff;
        background-color: rgb(105, 146, 149);
        border-radius: 7px;
        text-decoration: none;
        font-size: 12px;
        transition: all 0.5s ease;
    }

}

@media screen and (min-width: 769px) and (max-width:1024px) {

    .popup.show {
        width: 20vw;
        left: 86%;
        top: 60%;
    }

    .container-home .fixed-box {
        width: 20%;
        left: 75%;
        top: 40%;
        z-index: 99;
    }

    .container-home .fixed-box-tele {
        width: 20%;
        left: 75%;
        top: 62%;
        z-index: 99;
    }

    .container-home {
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        width: 100%;
        height: 38vh;
    }

    .container-home .slider-home {
        width: 100%;
        display: flex;
        justify-content: center;
        align-content: center;
        background-size: contain;
    }

    .container-home #slide1 {
        background-size: contain;
    }

    .container-home #slide2 {
        background-size: contain;
    }

    .container-home #slide3 {
        background-size: contain;
    }

    .container-home .cx-txt-home {
        display: inline-block;
        width: 45%;
        margin-top: -20%;
        padding: 5px 30px;
    }

    .container-home .cx-txt-home h1 {
        line-height: 35px;
        font-size: 2rem;
        margin-bottom: 5%;
        font-family: 'Roboto Slab', serif;
        font-weight: 600;
        color: rgb(80, 143, 147);
        text-align: left;
    }

    .container-home .cx-txt-home p {
        line-height: 25px;
        font-family: 'Roboto Slab', serif;
        font-weight: 400;
        color: #837777;
    }

    .container-cards {
        width: 100%;
        height: 25vh;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
    }

    .container-cards .card .icon {
        border: 2px solid rgb(105, 146, 149);
        height: 25%;
        width: 30%;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .icon p {
        font-size: 25px;
        color: rgb(105, 146, 149);
    }

    .container-cards .card {
        width: 19%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        height: 80%;
        margin-top: -15%;
        background-color: #ffffff;
        box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.3);
        border-radius: 20px;
        padding: 0 2px;
        transition: 0.5s;
        position: relative;
        overflow: hidden;
    }

    .container-cards .card .info-card h4 {
        font-family: 'Roboto Slab', serif;
        font-weight: 600;
        font-size: 18px;
    }

    .container-cards .card .info-card p {
        font-family: 'Roboto Slab', serif;
        font-size: 10px;
        font-weight: 300;
    }

    .container-institucional {
        display: block;             
    }

    .container-institucional .slider-video {
        display: flex;        
    }

    .container-institucional .slider-video .video {
        margin-left: 20%;       
    }

    .container-institucional .txt-institucional {
        width: 100%;
        margin-top: 2%;
    }

    .container-institucional .txt-institucional .info-institucional p {
        font-size: 15px;
    }

    .container-atendimento {
        height: 70vh;
        margin-bottom: 8%;
    }

    .container-atendimento .titulo-atendimento {
        padding: 0 150px;
    }    

    .container-depoimentos .bg-logo {
        height: 50vh;
    }

    .container-depoimentos .txt-depoimentos {
        height: 65vh;
    }

    .container-perguntas {
        height: 50vh;
    }

    .container-perguntas .caixa {
        height: 40vh;
    }

    .container-perguntas .caixa .logo img {
        height: 43%;
    }
}

.fixed-box {
    position: absolute;
    top: 20%;
    left: 75%;
    width: 20%;
    height: min-content;
    background-color: #126557;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8%;
    border: solid 2px #ffffff;
    z-index: 9999;
}

.fixed-box h2 {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Roboto Slab', serif;
    text-align: center;
    margin-bottom: 3%;
}

.fixed-box .dropdown-unidades {
    position: relative;
    display: inline-block;
    margin-bottom: 3%;
}

.dropbtn {
    padding: 10px;
    font-size: 13px;
    border: none;
    background-color: #f6f6f6;
    color: #126557;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.dropdown-content a {
    padding: 12px 16px;
    display: block;
    text-decoration: none;
    color: #333;
    font-size: 13px;
}

.dropdown-content a:hover {
    background-color: #3f3e3e;
    color: #ccc;
}

.teleconsulta {
    padding: 12px 16px;
    display: block;
    text-decoration: none;
    color: #ffffff;
    font-size: 13px;
}

.teleconsulta:hover {
    background-color: #126557;
    color: #ccc;
}

.fixed-box-tele {
    position: absolute;
    top: 40%;
    left: 75%;
    width: 20%;
    height: min-content;
    background-color: #126557;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8%;
    border: solid 2px #ffffff;

}

.fixed-box-tele h2 {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Roboto Slab', serif;
    text-align: center;
    margin-bottom: 3%;
}
