/* FONTS */
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap'); */

@font-face {
    font-family: 'URWGeometric-light';
    src: url(/assets/fonts/URWGeometricLight.otf) format('opentype');
}


@font-face {
    font-family: 'URWGeometric-medium';
    src: url(/assets/fonts/URWGeometricMedium.otf) format('opentype');
}

@font-face {
    font-family: 'URWGeometric-bold';
    src: url(/assets/fonts/URWGeometricExtraBold.otf) format('opentype');
}

:root {
    --cinza: #9a9a9a;
    --dark: #232323;
    --primary: #fed049;
    --cta: #7ce577;
    --azul: #60c3eb;
}

body {
    font-family: 'URWGeometric-light';
    background-color: var(--dark);
    color: #fff;
}
.name-input {
    display: none;
    visibility: hidden;
}

p {
    font-size: 1.2rem;
}

html {
    scroll-behavior: smooth;
}

a:hover {
    text-decoration: none;
}

h2 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.8rem;
    color: var(--azul);
}

@media (max-width: 576px) {
    h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 425px) {
    h2 {
        font-size: 1.3rem;
    }
}

button:focus {
    outline: none;
}

/* ENVIANDO FORM */
#enviando-form {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, .6);
    width: 100%;
    height: 100vh;
    display: none;
}

#enviando-form.active {
    display: block;
}

#enviando-form .wrapper {
    width: 200px;
    height: 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#enviando-form .circle {
    width: 20px;
    height: 20px;
    position: absolute;
    border-radius: 50%;
    background-color: #fff;
    left: 15%;
    transform-origin: 50%;
    animation: circle .5s alternate infinite ease;
}

@keyframes circle {
    0% {
        top: 60px;
        height: 5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
    }

    40% {
        height: 20px;
        border-radius: 50%;
        transform: scaleX(1);
    }

    100% {
        top: 0%;
    }
}

#enviando-form .circle:nth-child(2) {
    left: 45%;
    background-color: var(--azul);
    animation-delay: .2s;
}

#enviando-form .circle:nth-child(3) {
    left: auto;
    right: 15%;
    animation-delay: .3s;
    background-color: var(--primary);
}

#enviando-form .shadow {
    width: 20px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    top: 62px;
    transform-origin: 50%;
    z-index: -1;
    left: 15%;
    filter: blur(1px);
    animation: shadow .5s alternate infinite ease;
}

@keyframes shadow {
    0% {
        transform: scaleX(1.5);
    }

    40% {
        transform: scaleX(1);
        opacity: .7;
    }

    100% {
        transform: scaleX(.2);
        opacity: .4;
    }
}

#enviando-form .shadow:nth-child(4) {
    left: 45%;
    animation-delay: .2s
}

#enviando-form .shadow:nth-child(5) {
    left: auto;
    right: 15%;
    animation-delay: .3s;
}

#enviando-form .wrapper span {
    position: absolute;
    top: 75px;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    width: 400px;
    left: -50%;
    text-align: center;
}

@media (max-width: 576px) {
    #enviando-form .wrapper span {
        width: 280px;
        left: -20%;
    }

}

/* MENU */
#menu {
    padding: 10px;
    position: sticky;
    background-color: var(--dark);
    width: 100%;
    top: 0;
    z-index: 92;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

#menu img.logo {
    width: 200px;
}

@media (max-width: 360px) {
    #menu img.logo {
        width: 150px;
    }
}

#menu .nav-link {
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
}

.fa-bars {
    font-size: 1.8rem;
    color: #fff;
}

/* HEADER */

header {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    color: #fff;
}

header .cta {
    text-align: left;
}

header .cta a {
    background-color: #fff;
    border: 2px solid #8B862A;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.3rem;
    padding: 20px;
    display: inline-block;
    color: #8B862A;
    border-radius: 20px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0px;
}

#headerCarousel .carousel-inner {
    background-color: var(--dark);
    min-height: 500px;
    display: flex;
    align-items: flex-end;
}

#headerCarousel .image {
    height: 450px;
}

#headerCarousel .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 425px) {
    #headerCarousel .carousel-inner {
        background-color: var(--dark);
    }
}

@media (max-width: 1200px) {
    #headerCarousel .carousel-inner {
        min-height: 400px;
        display: flex;
        align-items: flex-end;
    }
}

@media (max-width: 992px) {
    #headerCarousel .carousel-inner {
        text-align: center;
        padding-top: 30px;
    }

    header .cta {
        text-align: center;
    }
}


#headerCarousel .carousel-item h2 {
    font-weight: bold;
    text-transform: uppercase;
    color: var(--azul);
}

/* SERVIÇOS */

#servicos {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 1000px;
}

#servicos .text-main {
    width: 35%;
    height: 100%;
}

#servicos .text-main .cta a {
    background-color: var(--primary);
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.2rem;
    display: inline-block;
    text-align: center;
    width: 100%;
    padding: 20px 30px;
}


#servicos .content-main {
    width: 50%;
}

#servicos .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#carouselServicos, #carouselServicos .carousel-inner, #carouselServicos .carousel-item, #carouselServicos img {
    height: 100%;
}

#carouselServicos .carousel-item img {
    object-fit: cover;
}

#servicos .area-card-servicos {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

#servicos .area-card-servicos .card-servicos {
    width: 100%;
    height: 333px;
    display: flex;
    justify-content: flex-start;
}

#servicos .area-card-servicos .card-servicos .image, #servicos .area-card-servicos .card-servicos .about {
    width: 50%;
    height: 100%;
}

.area-card-servicos .card-servicos .about {
    padding: 20px;
    color: #000;
    background-color: #fff;
    display: flex;
    align-items: center;
}

.area-card-servicos .card-servicos .about h4 {
    color: var(--azul);
    font-size: 1.6rem;
    font-family: 'URWGeometric-bold';
    font-weight: bold;
}

#servicos .area-card-servicos .card-servicos .image {
    height: 100%;
}

#servicos .area-card-servicos .card-servicos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {

    #servicos .text-main {
        width: 100%;
        height: auto;
        padding: 20px;
        text-align: center;
    }

    #servicos {
        flex-wrap: wrap;
    }

    #servicos .image, #servicos .content-main {
        width: 100%;
        height: unset;
    }

    #servicos .area-card-servicos .card-servicos .image, #servicos .area-card-servicos .card-servicos .about {
        width: 100%;
        height: 100%;
    }

    #servicos {
        height: unset;
    }
}

@media (max-width: 768px) {
    #servicos .content-main {
        width: 100%;
        height: auto;
    }
}


@media (max-width: 576px) {
    #servicos .image, #servicos .content-main {
        width: 100%;
    }

    #servicos .area-card-servicos .card-servicos .image, #servicos .area-card-servicos .card-servicos .about {
        height: unset;
    }

    #servicos .area-card-servicos .card-servicos {
        flex-wrap: wrap;
        height: unset;
    }

    #servicos .area-card-servicos .card-servicos.reverse {
        flex-wrap: wrap-reverse;
    }
}


/* CHAMDA #1 */

#cham1 {
    padding: 40px 0;
    text-align: center;
    display: flex;
    align-items: center;
    min-height: 400px;
}

@media (max-width: 425px) {}


#cham1 h2 {
    color: var(--azul);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 2.3rem;

}

#cham1 .cta a {
    background-color: #fff;
    border: 2px solid #8B862A;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.3rem;
    padding: 20px;
    display: inline-block;
    color: #8B862A;
    border-radius: 20px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* PROVA */

#prova {
    padding: 50px 0;
}

#prova h2 {
    margin-bottom: 40px;
}

#prova .area-depoimentos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.bold {
    font-weight: bold;
}

#prova .area-depoimentos .card-depoimetos {
    background-color: #fff;
    padding: 20px;
    width: 45%;
    margin: 20px;
    color: #000;
}

#prova .card-contador {
    text-align: center;
}

#prova .card-contador .icon {
    text-align: center;
    margin-bottom: 20px;
}

#prova .card-contador .icon i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;

    font-size: 2rem;
    color: var(--primary);
    margin: 0 auto;
}

#prova .area-depoimentos .card-depoimetos img {
    width: 50px;
    height: 45px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: #ccc;
}

#prova .area-depoimentos .card-depoimetos .header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

#prova .area-depoimentos .card-depoimetos .stars i {
    color: #ffde00;
    filter: drop-shadow(1px 0px 0px #F57328);
}

@media (max-width: 992px) {
    #prova .area-depoimentos .card-depoimetos {
        width: 40%;
    }
}

@media (max-width: 769px) {
    #prova .area-depoimentos .card-depoimetos {
        width: 100%;
    }
}



/* DEPOIMENTOS */
#depoimentos .item {
    color: #fff;
}

#depoimentos .item hr {
    border-color: rgba(255, 255, 255, .5);
}

#depoimentos .item .header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 25px;
}

#depoimentos .item .header img {
    width: 100px;
    height: 100px;
    margin-right: 15px;
    border-radius: 50%;
}

.owl-dots {
    display: none;
}

button:focus {
    outline: none;
}

#depoimentos .item .header .stars i {
    color: #ffde00;
    filter: drop-shadow(1px 0px 0px #F57328);
}

#depoimentos .owl-nav {
    display: flex;
    justify-content: center;
}

#depoimentos .owl-nav button span {
    font-size: 3rem;
    padding: 0;
    margin: 0;
}



/* JORNADA DO PACIENTE */
#jornada {
    padding: 40px 0;
    background-image: linear-gradient(rgba(0, 0, 0, .85), rgba(0, 0, 0, .85)), url(/assets/images/banners/jornada.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#jornada h2 {
    margin-bottom: 40px;
    font-size: 2rem;
}

#jornada .area-card-jornada {
    display: flex;
    justify-content: center;
    margin-left: 60px;
}

#jornada .card-jornada {
    width: 150px;
}

#jornada .card-jornada.left1 {
    position: relative;
    left: -15px;
}

#jornada .card-jornada.left2 {
    position: relative;
    left: -30px;
}

#jornada .card-jornada.left3 {
    position: relative;
    left: -45px;
}

#jornada .card-jornada.left4 {
    position: relative;
    left: -60px;
}


#jornada .card-jornada .content {
    text-align: center;
    margin-top: 20px;
    position: relative;
}

#jornada .card-jornada .content .line {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #ccc;
    top: 10px;
    z-index: 10;

}

#jornada .card-jornada .content h4 {
    font-size: 1rem;
    padding: 0 10px;
}


#jornada .card-jornada .content i {
    color: #e0c87e;
    position: relative;
    z-index: 20;
}

.progress .progress-value i {
    font-size: 2.4rem;
    color: var(--primary);
}

.progress {
    background: none;
    box-shadow: none;
    width: 150px;
    height: 150px;
    line-height: 150px;
    position: relative;
}

.progress:after {
    content: "";
    border-radius: 50%;
    border: 15px solid #ccc;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.progress>span {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.progress .progress-left {
    left: 0;
}

.progress .progress-bar {
    border-width: 15px;
    border-style: solid;
    position: absolute;
    width: 100%;
    height: 100%;
    background: none;
    top: 0;
    border-color: #000;
}

.progress .progress-left .progress-bar {
    left: 100%;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    border-left: 0;
    -webkit-transform-origin: center left;
    transform-origin: center left;
}

.progress .progress-right {
    right: 0;
}


.progress .progress-value {
    font-size: 24px;
    color: #000;
    text-align: center;
    width: 100%;
    height: 100%;
    position: absolute;
}

@keyframes top-load1 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

@keyframes barra-top {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
}



@keyframes bottom-load1 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
}

@keyframes barra-bottom {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}


@keyframes barra-full {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

.progress.blue .progress-bar {
    border-color: var(--primary);
}

.progress.blue .progress-left .progress-bar.top-bar {
    animation: barra-top 1s linear forwards 1s;
}

.progress .progress-right .progress-bar.top-bar {
    left: -100%;
    -webkit-transform-origin: center right;
    transform-origin: center right;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 0;
    animation: top-load1 1s linear forwards;
}

.progress.blue .progress-left .progress-bar.bottom-bar {
    animation: barra-bottom 1s linear forwards 1s;
}

.progress .progress-right .progress-bar.bottom-bar {
    left: -100%;
    -webkit-transform-origin: center right;
    transform-origin: center right;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 0;
    animation: bottom-load1 1s linear forwards;
}


@media (max-width: 769px) {
    #jornada .area-card-jornada {
        flex-direction: column;
        justify-content: center;
        margin-left: 0;
    }

    #jornada .area-card-jornada .card-jornada {
        margin: 0 auto;
        margin-bottom: 20px;
    }


    #jornada .card-jornada.left1, #jornada .card-jornada.left2,
    #jornada .card-jornada.left3,
    #jornada .card-jornada.left4 {
        left: 0px;
    }

    .progress.blue .progress-left .progress-bar.top-bar {
        animation: barra-full 1s linear forwards 1s;
    }

    .progress .progress-right .progress-bar.top-bar {
        animation: barra-full 1s linear forwards;
    }

    .progress.blue .progress-left .progress-bar.bottom-bar {
        animation: barra-full 1s linear forwards 1s;
    }

    .progress .progress-right .progress-bar.bottom-bar {
        animation: barra-full 1s linear forwards;
    }

}

/* SOBRE */
#sobre {
    padding: 50px 0;

}

#sobre video {
    width: 100%;
}

#sobre .cta a {
    background-color: #fff;
    border: 2px solid #8B862A;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.3rem;
    padding: 20px;
    display: inline-block;
    color: #8B862A;
    border-radius: 20px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    #sobre {
        text-align: center;
    }

    #sobre video {
        margin-bottom: 20px;
    }
}

/* CONTATO */
#contato {
    padding: 50px 0;
    background-color: var(--cinza);
}

#contato form {
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.3);
    text-align: center;
    color: #fff;
}


#contato form input, #contato form textarea {
    padding: 30px 20px;
}

#contato form h2 {
    margin-bottom: 20px;
}

#contato form button {
    background-color: var(--azul);
    border: 2px solid #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.3rem;
    padding: 20px;
    display: inline-block;
    width: 100%;
    color: #fff;
    border-radius: 20px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}


/* RODAPÉ */

footer {
    padding: 20px;
}

footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

footer a, footer a:hover {
    color: #fff;
}

footer img.logo {
    width: 250px;
}

footer i.fa-envelope {
    font-size: 1rem;
}


footer hr {
    border-color: rgba(255, 255, 255, 0.24);
}

footer .desen a {
    color: var(--primary);
    font-weight: bold;
}

@media (max-width: 992px) {
    footer img.logo {
        width: 200px;
    }

}

footer i.fa-instagram {
    font-size: 2rem;
    padding: 20px;
    background-color: #fff;
    height: 60px;
    width: 60px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
}


/* WHATSAPP */
#modalWhatsapp .modal-title {
    color: #000 !important;
}

#modalWhatsapp label {
    color: #000;
}

#modalWhatsapp button.cta {
    color: #000;
    background-color: var(--cta);
    font-size: 1rem;
    font-weight: 500;
    padding: 20px 40px;
    transition: all .5s;
    border: none;
    outline: none;
    width: 100%;
    transition: all .3s;
    font-weight: bold;
    text-transform: uppercase;
}

#modalWhatsapp button.cta:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    z-index: 90;
    position: fixed;
    bottom: 20px;
    right: 40px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 35px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    cursor: pointer;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.8);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

@media (max-width: 465px) {

    .btn-whatsapp-pulse {
        bottom: 40px;
    }
}