@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');


    /* Estilo básico para o botão do WhatsApp */

:root{
    --principalcolor:#30507F;
    --secondcolor:#558CA1;
    --lightblue:#E2EEFA;
    --lightgray:#E9EBEA;
    --lightbrow: #BF9A85;


    --maincolor:#007ccf;
    --secondcolor:#558CA1;
    --thirdcolor:#f4ab01;
    --textcolor:#4A5764;
}
*{
    margin:0; 
    padding:0;
    box-sizing: border-box;
    outline: none; 
    border:none;
    text-decoration: none;
    /* text-transform: capitalize; */
    transition:all .2s linear;
    font-family: "Inter", sans-serif;
    
}

/******************************************/
/* Estilos para o modal */
/* Estilos para o modal */
/* .modal {
    display: none;  Esconde o modal por padrão 
    position: fixed;  Permanece fixo na tela 
    z-index: 9999;  Fica sobre todos os outros elementos 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;  Adiciona barra de rolagem quando necessário 
    background-color: rgba(0,0,0,0.8);  Fundo preto semi-transparente 
  } */
  
  /* Estilos para o conteúdo do modal */
  /* .modal-content {
    margin: 1% auto;  Centraliza o modal verticalmente e o posiciona 15% do topo 
    padding: 20px;
    max-width: 60vw;  Largura máxima do modal 
    background-color: #fefefe;
    position: relative;
    border-radius: .5rem;
  } */

  /* .modal-content img {
    width: 100%;  Ajusta a largura da imagem para preencher o container 
    height: auto;  Mantém a proporção da imagem 
    max-width: 60vw;  Largura máxima da imagem 
    max-height: 600px;  Altura máxima da imagem 
    border-radius: .5rem;
  } */

  @media screen and (min-width: 768px) {
    .mobile-only {
      display: none;
    }
  }


  @media (max-width: 768px){
    .desktop-only {
        display: none;
      }
      
    /*.modal-content{*/
    /*    max-width: 100vw;*/
    /*    margin: 15% auto;*/
    /*}*/

    /*.modal-content img{*/
    /*    max-width: 100vw;*/
    /*    max-height: 100vh;*/
    /*}*/
  }
  
  /* Estilos para o botão de fechar */
  .close {
    color: #da5f5f;
    float: right;
    font-size: 33px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
/******************************************/

/*botao whats INICIO*/
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    transition: all .5s ease;
    opacity: 0;
}

.whatsapp-button img {
    width: 60px;
    height: 60px;
}

.whatsapp-button:hover{
    transform: scale(1.1);
}

/*botao whats FIM*/

body {
    overflow-x: hidden;
}
/*configuração carousel SWIPER*/

/* Estilos para as setas do swiper */
.swiper-button-next,
.swiper-button-prev {
    background-color:var(--maincolor); /* Cor de fundo das setas */
    width: 40px!important; /* Largura das setas */
    height: 40px!important; /* Altura das setas */
  
    display: flex; 
    justify-content: center; /* Alinhar conteúdo no centro horizontalmente */
    align-items: center; /* Alinhar conteúdo no centro verticalmente */
    position: absolute; /* Posicionamento absoluto para as setas */
    top: 50%; /* Posiciona as setas no centro verticalmente */
    transform: translateY(-50%); /* Ajusta a posição vertical das setas */
    z-index: 10; /* Z-index para ficar sobre o conteúdo */
    cursor: pointer; /* Mostra cursor como ponteiro */
    transition: background-color 0.3s; /* Transição suave para a cor de fundo */
    opacity: 0.5;
}

/* Estilos para o ícone das setas */
.swiper-button-next::after,
.swiper-button-prev::after {
    color: white; /* Cor do ícone */
    font-family: 'FontAwesome'; /* Define a fonte do ícone (neste caso, FontAwesome) */
    font-size: 20px!important; /* Tamanho do ícone */
    /* opacity: 0.9; */
    
}

/* Efeito hover para as setas */
.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1; /* Altera a cor de fundo ao passar o mouse */
}







html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 7%;
    width: 100%;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    z-index: 1000;
    background-color: white !important;

}
.logo{
    width: 150px;
    height: 70px;
    margin-bottom: 10px;
}

.logo:hover{
    transform: scale(1.1);
}
.logo img{
    width: 100%;
}
.navbar a{
    color: var(--textcolor);
    font-size: 1.7rem;
    margin: 1rem;
    position: relative;
    transition: 0.5s;
}
.navbar a:hover{
    color: var(--maincolor);
}

.navbar a::after{
    content: "";
    background-color: var(--maincolor);
    width: 0;
    position: absolute;
    height: 0.2rem;
    left: 0;
    margin-top: 0.5rem;
    top: 100%;
    transition: 0.5s;
}
.navbar a:hover::after{
    width: 100%;
}



#menu-bars{
    color: var(--textcolor);
    font-size: 2.5rem;
    cursor: pointer;
    margin-right: 1rem;
    display: none;
}
#menu-bars:hover{
    color: var(--maincolor);
}
.right-icons .btn a{

    padding: 1.2rem 2rem;
    font-size: 1.7rem;
    background: var(--maincolor);
    color: white;
    text-decoration: none;
    cursor: pointer;
}
.right-icons .btn a:hover{
    background-color: var(--secondcolor);

}

/* header section ended */

/* Home section started */

.main-home{
    padding: 2rem 7%;
    background-image: url(images/blurbg1.jpg);
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 48px;
}

.home{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.home .home-left-content{
    flex: 1 1 40rem;
    margin-top: 6rem;
}

.home-left-content span{
    font-size: 2rem;
    color: var(--maincolor);
    padding: 1rem 0;
    font-weight: bolder;
}
.home-left-content h2{
    font-size: 48px;
    margin: 1rem 0;
    
}
.home-left-content p{
    font-size: 2rem;
    color: var(--textcolor);
    line-height: 3rem;
}

.home-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}
.home-btn a{
    display: inline-block;
    padding: 1.5rem 3rem;
    background-color: var(--maincolor);
    font-size: 1.7rem;
    color: white;
    transition: 0.5s ease;
}
.home-btn a:hover{
    padding: 1.5rem 2.5rem;
}


.homebtnsec{
    background:transparent !important;
    color: var(--textcolor) !important;
    border: 1px solid var(--maincolor);
}
.homebtnsec:hover{
    background-color: var(--secondcolor) !important;
    color: white !important;
}

.home .home-right-content{
    flex: 1 1 50rem;
}

.home .home-right-content img{
    width: 99.9%;
    margin-top: 8rem;
    border-radius: .5rem;

   
}

.technology{
    padding: 3rem 7%;
}

.main-technology{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: -100px;
}
.inner-technology{
    flex: 1 1 300px;
    padding: 3rem 3rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-image: url(images/Screenshot_2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    background-color: white;
    position: relative;
    z-index: 1;
}

.inner-technology::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7); /* branco com 50% de opacidade */
    z-index: -1;
}

.inner-technology span{
    width: 0;
    height: 100%;
    background-color: var(--maincolor);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: 0.5s;
    
}
.inner-technology:hover span{
    width: 100%;
}


/* .inner-technology:hover{
    background: var(--maincolor);
    
} */

.inner-technology:hover i{
    
    color: white;
}
.inner-technology:hover h2{
    color: white;
}
.inner-technology:hover p{
    color: white;
}
.inner-technology i{
    font-size: 48px;
    color: var(--maincolor);
}

.inner-technology h2{
    font-size: 2.5rem;
    padding: 1rem 0;
}
.inner-technology p{
    font-size: 1.8rem;
 
    line-height: 2.5rem;
    padding: 1rem 0;
}



/* home section will end */

/* About us section  */
.main-about{
    position: relative;
    padding: 2rem 7%;
    width: 100%;
    background-image: url(images/harmonização\ facial.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.radiologia_jean{
    margin-top: 100px;
    background-image: url(images/radiologiajpg.jpg); 
}

.main-about::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5); /* branco com 50% de opacidade */
  
    
}
.main-about .about-heading{

    text-align: center;
    font-size: 40px;
    font-weight: bolder;
    color: var(--maincolor);
    border-bottom: 2px solid var(--secondcolor);
    width: 200px;
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
    z-index: 2;

}
.inner-main-about{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    
}

.about-inner-content-left{
    flex: 1 1 40rem;
}
.about-inner-content-left img{
    width: 100%;
    position: relative;
    z-index: 2;
    top: 10px;
    border-radius: .5rem;
    left: 30px;
    
}

.radiologia-left img{
    padding:0;
    width: 100%;
    height: 100%;
    top: 21px;
    object-fit: cover;
    



}
.about-inner-content{
    flex: 1 1 45rem;
}
.about-inner-content img{
    width: 100%;
}
.about-right-content h2{
    font-size: 30px;
    padding: 1.5rem 0;
    color: black;
    font-weight: bolder;
    line-height: 4rem;
    position: relative;
    z-index: 2;

}
.about-right-content p{
    font-size: 1.8rem;
    padding: 1.5rem 0;
    color: var(--textcolor);
    font-family: "Inter", sans-serif;
    text-align: left;
    line-height: 2.5rem;
    position: relative;
    z-index: 2;
}
.aboutsec-content{
    line-height: 2.5rem !important;
}
.aboutbtn {
    padding: 1.5rem 3rem;
    background-color: transparent;
    border: 2px solid var(--maincolor);
    margin-top: 0.5rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: 0.5s all;
    position: relative;
    z-index: 2;
    color: #02407d;
    text-decoration: none;
}
.aboutbtn:hover{
    background-color: var(--secondcolor);
    color: white;
    border:none;
    padding: 1.5rem 3.5rem;
}
.main-doctors{
    padding: 2rem 7%;
    background-image: url(images/backgroung-pattern-3.png);
    background-color: #f5f5f5;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.doctors-heading{
    font-size: 30px;
    text-align: center;
    margin: 4rem;
    color: var(--maincolor);
 
}

.doctors-heading h2{
   border-bottom: 2px solid var(--secondcolor);
   display: inline-block;
   padding-bottom: 3rem;
}
.main-inner-doctor{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center; /* Centraliza os elementos horizontalmente */
    gap: 8rem; /* Reduzi o espaçamento entre as divs */
    margin-top: 2rem; /* Adicionei margem superior para espaçamento */
    
}
.doc-poster{
    width: 35%;
    /* flex: 1 1 200px; */
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    position: relative;
    overflow: hidden;
    
}
.doc-poster img{
    width: 100%;
    border: 0.7rem solid var(--maincolor);
}
.doc-poster:hover img{
    border-radius: 0 50px 0 0;
}
.doc-icons{
    position: absolute;
    left: -100%;
    top: 10%;
    transition: 0.5s;
}
.doc-poster:hover .doc-icons{
    left: 5%;
}

.doc-icons i{
    font-size: 2rem;
    margin: 0.5rem;
    border: 1px solid var(--secondcolor);
    color: var(--maincolor);
    padding: 1rem;
    background-color: white;
    cursor: pointer;
    
}
.doc-icons i:hover{
    background-color: white;
    color: var(--secondcolor);
    border-radius: 10px !important;
    transform: scale(1.2);
    border: 1px solid var(--maincolor);
}

.red{
    color: red!important;
    border: none!important;
}
.doc-poster::after{
    content: "";
    background: linear-gradient(0deg, #daecfe 50%, transparent);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: 1;
    bottom: -330px;
    transition: 0.5s;
}
.doc-poster:hover:after{
    bottom: -200px;
}

.doc-details{
 position: absolute;
 text-align: center;
 z-index: 2;
 bottom: -20px;
 left: 50%;
 transform: translate(-50%, -50%); /* Move a div de volta metade da sua largura e metade da sua altura */
}
.doc-details h2{
    color: black;
    font-size: 25px;
    padding: 2rem 0;
   
}

.doc-details i{
    padding: 0.5rem;
    font-size: 2.5rem;
    color: var(--maincolor);
    cursor: pointer;
}
.doc-details i:hover{
    color: var(--secondcolor);
    transform: scale(1.2);
}

.doc-poster:hover .doc-details{
    bottom: 10px;
}
.our-service{
    width: 100%;
    padding: 3rem 7%;
}

/*servicce INICIO*/

.service-heading{
    font-size: 30px;
    color:var(--maincolor);
    text-align: center;
    padding: 1rem 0;
    margin-bottom: 3rem;
 
}
.service-heading h2{
    border-bottom: 2px solid var(--secondcolor);
    display: inline-block;
    padding-bottom: 3rem;

}
.main-services{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
    text-align: center;
}
.inner-services{
    flex: 1 1 300px;
    padding: 3rem 2rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border: 2px solid var(--textcolor);
    
}
.inner-services:hover{
    transform: translateY(-10px);
    border-bottom: 2px solid var(--maincolor);
    background-color: #f5f5f5;
}
.inner-services:hover .service-icon{
    width: 200px;
    height: 200px;
    border-radius: 0;
    background-color: var(--maincolor);
    
}
.inner-services:hover .service-icon i{
    color: white;
    transform: scale(1.1);
}

.service-icon{
    width: 200px;
    height: 200px;
    line-height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    border: 1px solid var(--maincolor);
    background-color: #f5f5f5;
}

.inner-services p{

    font-size: 1.8rem!important;
}
.service-icon img{
    border-radius: 50%;
    width:200px;
    height: 200px;
    font-size: 3rem;
    color: var(--maincolor);
    padding: 1rem;
    object-fit: cover;
}

.botao-jel{
    display: flex;
    justify-content: center;
}




/*GALERIA ******************************************INICIO*/
#projects {
    padding: 5rem 10%;
  }

.projects {
    background: var(--lightblue);
  }
  
  .projects .heading {
    color: #f5f5f5;
  }
  
  .projects .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
  }
  
  .projects .box-container .box {
    cursor: initial;
  }
  
  .projects .box-container .box:hover .image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  
  .projects .box-container .box .image {
    height: 40rem;
    overflow: hidden;
  }
  
  .projects .box-container .box .image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: .2s linear;
    transition: .2s linear;
  }
  
  .projects .box-container .box .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background:rgb(255, 255, 255);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  
  .projects .box-container .box .content .info {
    padding: 1rem 2rem;
  }
  
  .projects .box-container .box .content .info h3 {
    font-size: 1.7rem;
    color: #2f2f2f;
    text-transform: capitalize;
  }
  
  .projects .box-container .box .content .info p {
    font-size: 1.5rem;
    color:  #2f2f2f;
    line-height: 2;
  }
  
  .projects .box-container .box .content i {
    width: 7.5rem;
    font-size: 3rem;
    background:var(--maincolor);
    color:#ffffff;
    cursor: pointer;
    text-align: center;
    line-height: 7.5rem;
  }

/*GALERIA ******************************************FIM*/
.inner-services h3{
    font-size: 2rem;
    padding-top: 2rem;
}
.inner-services p{
    font-size: 1.5rem;
    padding: 1.5rem 0;
    line-height: 2.5rem;
    
}
/* services ends */
.main-review{
    padding: 2.5rem 7%;
    width: 100%;
    
}


.review-heading{
    text-align: center;
}

.review-heading{
    font-size: 30px;
    color: var(--maincolor);
    padding-bottom: 3rem;
}

.review-heading h2{
    border-bottom: 2px solid var(--secondcolor);
    display: inline-block;
    padding-bottom: 3rem;
}
.review-inner-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    text-align: center;
   padding: 4rem 0;
    
}
.review-box{
    flex: 1 1 300px;
    padding: 1rem;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 0 50px 0 0;
    border: 2px solid var(--maincolor);
    cursor: pointer;
    transition: 1s;
}
.review-box:hover{
 
    border-radius: 50px 0 0 0;
    
}

.review-box img{
    border-radius: 100%;
    width: 100px;
    transition: 1s;
}
.review-box:hover img{
    transform: scale(1.1);
}
.review-stars{
    padding: 1rem 0;
}
.review-stars i{
    font-size: 2rem;
    color: var(--secondcolor);
    margin: 0.2rem;
}
.review-box h2{
    font-size: 2rem;
    padding-top: 2rem;
}
.review-box p{
    font-size: 1.5rem;
    padding: 1rem 1rem;
    padding-bottom: 2rem;
    line-height: 2.5rem;
}
.main-footer{
    padding: 4rem 7%;
    background-color: var(--textcolor);
}
.footer-inner{
    display: flex;
    align-items:flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-content{
    flex: 1 1 200px;
    text-align: center;
   
}
.footer-content h1{
    color: white;
    font-size: 25px;
}

.footer-content .link{
    display: flex;
    flex-direction: column;
    align-items: start;
}
.link a{
    display: block;
    text-align: center;
    color: white;
    font-size: 18px;
    padding: 1rem;
    margin: 0.5rem;
}

.link a:hover{
    transform: scale(1.1);
}
.link i{
    font-size: 24px;
    margin-right: 15px;
}

.link p{
    font-size:15px;
    color: white;
    line-height: 25px;
    letter-spacing: 1px;
    text-transform: none;

}

.rodape{
    font-size: 18px;
    color: white;
    text-align: center;
}

.rodape span{
    color: #f4ab01;
  
}

.rodape a:hover span{
   
    border-bottom: 2px solid var(--thirdcolor);
}


.mapa_jean iframe{
    width: 100vw;
    height: 400px;
}




/* .doc-poster:hover img{
    transform: translateY(-20px);
}

.doc-poster::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #f5f5f5 50%, transparent);
    z-index: 1;
    bottom: -220px;
    left: 0;
    transition: 0.5s;
}
.doc-poster:hover::after{
    bottom: -100px;
}
.details{
    color: black;
    font-size: 25px;
    position: absolute;
    bottom: 10px;
    left: 15px;
    z-index: 2;
}
.doc-poster:hover .details{
    bottom: 30px;
} */










@media (max-width:768px) {

    html{
        font-size: 55%;
    }

    .right-icons{
        display: flex;
        align-items: center;
    }

    .about-right-content p{
        font-size: 1.8rem;
        color: #2f2f2f;
  
           
    }

    #menu-bars{
        
        display: initial;
    }

    header{
        padding: 2rem;
        background-color: white;
    }

    .navbar{
        position: absolute;
        top: 100%;
        left: -100%;
        height: 100vh;
        width: 100%;
        background-color: white;
    }
    .navbar.active{
        left: 0;
    }
    .navbar a{
        display: block;
        margin: 2rem;
        padding: 1rem;
        border: 1px solid var(--textcolor);
    }

    .whatsapp-button img {
        width: 50px;
        height: 50px;
    }

    .home .home-left-content{
        margin-top: 50px;
        padding: 2rem;
    }

    .home .home-left-content h2{
        font-size: 30px;
    }
    .main-technology{
        
        margin-top: 0;
    }

    .about-right-content h2{
        font-size: 20px;
        line-height: 3rem;
    }

    .about-inner-content-left img{
        width: 100vw;
        left: 0;
        margin-left: -29px;
        
    }

    .about-right-content p{
    font-size:18px;

   }

   .main-about{
    background-position: center left;
   
   }

   .doc-poster{

    flex: 1 1 300px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

    
}
}
@media (max-width: 628px ){
    .swiper-button-next,
    .swiper-button-prev {
        
        width: 35px!important;
        height: 35px!important; 
        border-radius: .5rem;

        top: 50%; /* Posiciona as setas no centro verticalmente */
        transform: translateY(90%); /* Ajusta a posição vertical das setas */

    }

    .home .home-right-content img{
        margin-top: 1rem;
        width: 100vw; /* Largura igual à largura da tela */
        margin-left: -29px;
       

    }

    .home .home-right-content{
        flex: 1 1 50rem;
    }
}
