/*---------------------------------------------------------------*/
/*   Panel de acceso rapido - Index */

.hero-inicio {
    margin-top: 0px;
    height: 820px;
}

.inicio-contenedor {
    height: 660px;
    background-color: rgb(0, 0, 0);
    margin-top: 60px;
    width: auto;
    position: relative;
    display: flex;
    justify-content: center;
    background-image: url(images/hero-principal.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1200px) {
    .inicio-contenedor {
        background-position: left;
    }
}

.logo64 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.imagen-estatica {
    position: fixed;
    top: 200px;
    left: 0;
    background-color: hsla(0, 0%, 95%, 0.596);
    width: 200px;
    height: 80px;
    padding: 1rem;
}

.imagen-estatica img {
    width: 100%;
}

.panel {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 900px;
    height: 170px;
    margin: 0 auto;
    position: absolute;
    top: 520px;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 8px 16px rgba(0, 0, 0, 0.2);
}

.grid-item {
    background: linear-gradient(90deg, #F3F3F3 102.36%, #F0F2F0 102.37%);
    padding: 5px;
    text-align: center;
    transition: transform 1s;
    pointer-events: stroke;
    cursor: pointer;
}

.grid-item:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}

.panel-servicios {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background-color: #202020;
}

.item-s h1{
    font-size: 10px;
}

.item-s p{
    font-size: 10px;
}

.panel-ubicacion {
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}

.panel-especialidades:hover {
    transform: scale(1.15);
}

.panel-servicios:hover {
    transform: scale(1.15);
}

.panel-ubicacion:hover {
    transform: scale(1.15);
}

.grid-item img {
    max-width: 30%;
    margin: auto;
    padding: 5px;
}

.grid-item h1 {
    padding: 0;
    margin: 0;
    font-size: 16px;
}

.grid-item p {
    margin-bottom: 20px;
    font-size: 14px;
    padding: 0;
    margin: 0;
    font-weight: 300;
}

.grid-item span {
    color: #000000;
    font-weight: 500;
}

/* ----------------------------------------------------------------------------- */
/* INICIO de seccion Especialidades */

.especialidades {
    background-image: url(images/bg-especialidades.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    max-height: 1550px;
}

.titulo-especialidades {
    padding-top: 0rem;
}

.especialidades .container-e {
    max-width: 1000px;
    margin: 0 auto;
    height: auto;
    display: flex;
    justify-content: center;
    padding-bottom: 10rem;
    border-radius: 15px;
}

.especialidades-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.box {
    height: 420px;
    width: 300px;
    text-align: center;
    margin: 2rem 1rem;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.2);
    border-radius: 15px;

}

.head-box {
    height: 65px;
    text-align: center;
    background-color: var(--fros-blue-color);
    padding: 10px;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 40px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.2);
}

.info-box {
    padding: 25px;
    font-size: 14px;
}

.img-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
}

.img-box img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    transition: all 500ms ease-out;
}

.texto-box {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 56, 255);
    background: linear-gradient(180deg, rgba(0, 56, 255, 0.8071603641456583) 22%, #1988f0 100%);
    transition: all 500ms ease-out;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    padding: 12rem 1.5rem;
    background-position: bottom;
}

.img-box:hover>.texto-box {
    opacity: 1;
    visibility: visible;
    background-position: top;
}

.img-box .texto-box p {
    color: #fff;
    font-size: 17px;
    line-height: 1.3;
    width: 100%;
    margin: 0 auto;
}

/* ----------------------------------------------------------------------------- */
/* INICIO seccion de Servicios */

.package-service {

    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 80, 213, 0.65)), to(rgba(0, 80, 213, 0.95))), url('../images/package-service-img.jpg') center/cover no-repeat;
    background: -o-linear-gradient(rgba(0, 80, 213, 0.65), rgba(0, 80, 213, 0.95)), url('../images/package-service-img.jpg') center/cover no-repeat;
    background: linear-gradient(rgba(0, 80, 213, 0.65), rgba(0, 80, 213, 0.95)), url('../images/package-service-img.jpg') center/cover no-repeat;
    padding: 10rem 0rem;
    height: auto;
}

@media screen and (max-width: 450px) {
    .package-service {
        font-size: 15px;
        height: auto;
    }
}

.text-content_index {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem;
}

.text-content_index img {
    max-width: 600px;
    padding: 0rem 2rem;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

/* ---------------------------------------------------------------------- */
/* INICIO de seccion capacidad instalada */

.capacidad-instalacion {
    height: auto;
    padding-bottom: 5rem;
}

.capacidad-countup {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    gap: 2rem;
    justify-content: center;
    margin: 0 auto;
    padding: 2rem;
}

.container-capacidad {
    display: flex;
    flex-direction: row;
    border: 4px solid #fff;
    border-radius: 10px;
    background: rgba(230, 239, 252, 0);
    width: 250px;
    height: 140px;
    margin: 0.5rem 0rem;
    text-align: center;
}



.cc-num{
    width: 70px;
    background-color: rgb(255, 255, 255);
    display: flex;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cc-num .num{
    width: 90px;
    font-size: 30px;
    font-weight: bold;
    background-color: rgb(255, 255, 255);
}


.cc-text{

padding: 5px;
display: flex;
justify-content: center;
align-items: center;
}

.cc-text .text{
    color: white;
    font-weight: 500;
}
/* FIN de seccion Capacidad Instalada */

.boton-azul_claro {
    display: flex;
    width: 250px;
    text-align: center;
    font-size: 18px;
    padding: 1.5rem;
    background-color: var(--fros-blue-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;

}


/* ---------------------------------------------------------------------- */
/* Contactenos y ubicacion */

.contact-index {
    padding: 10rem 1rem;
}

.contenedor-contact_index {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
}

.contact-map {
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
  
}

.contact-map iframe {
    height: 350px;
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    flex: 1 0 40%;
    align-items: center;
    justify-content: center;
}

.contact-infoi {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.contact-info_contenedor {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.contact-info_contenedor>div {
    flex: 1 0 33.333%;
}

.contact-info_div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.cid1 {
    background-color: #003785;
    border-bottom-left-radius: 5px;
}

.cid2 {
    background-color: #1465bb;
}

.cid3 {
    background-color: #2196f3;
    border-bottom-right-radius: 5px;
}

@media screen and (max-width: 768px) {
    .cid3 {

        border-bottom-right-radius: 5px;
        width: 1200px;
    }
}

.medios-citas {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.contact-left iframe {

    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.contact-right {
    padding: 5rem 1rem;
}

.contact-right form {
    margin-top: 5rem;
}

.contact-info-m {
    display: flex;
    justify-content: center;
    border: 0.7px solid #0992e2;
    background-color: azure;
    border-radius: 80px;
    color: #000;
    margin: 5px 5px 15px 5px;
    padding: 5px;
    position: relative;
}

.contact-info-m svg {
    width: 20%;
    position: absolute;
    left: 0;
}



@media screen and (max-width: 992px) {
.capacidad-countup {
    flex-wrap: wrap;
}
}
/* ---------------------------------------------------------------------- */

@media screen and (max-width: 768px) {
    .panel {
        width: 90%;
    }
}

@media screen and (max-width: 600px) {
    .panel {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
        width: 80%;
        grid-row-gap: 10px;
        height: auto;
    }

    .hero-inicio{
        height: 1000px ;
    }
  

    .panel-servicios {
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
    }

    .grid-item {
        border-radius: 6px;
        border-bottom: 4px solid #004AAD;
    }

    .panel-ubicacion {
        border-radius: 10px; 
    }

    .package-service {
        max-height: 600px;
    }

    .text-content_index img{
        width: 100%;
    }

    .especialidades {
        padding-top: 5rem;
        height: 1800px;

    }

    .contenido-about {
        flex-direction: column;
        width: 65%;
    }
}

    @media screen and (max-width: 500px) {
        .hero-inicio {
            height: 1050px;
        }
    }

    @media screen and (max-width: 250px) {
        .hero-inicio {
            height: 1200px;
        }
    }
/*---------------------------------------------------------------*/
/* INICIO sobre nosotros */
.contact-index-box{
    background-image: url(images/hero-principal.png);
    height: auto;
    
}
.cn-nosotros{
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 80, 213, 0.65)), to(rgba(0, 80, 213, 0.95))), url('../images/fachada-clinica.png') center/cover no-repeat;
    background: -o-linear-gradient(rgba(0, 80, 213, 0.65), rgba(0, 80, 213, 0.95)), url('../images/fachada-clinica.png') center/cover no-repeat;
    background: linear-gradient(rgba(0, 80, 213, 0.65), rgba(0, 80, 213, 0.95)), url('../images/fachada-clinica.png') center/cover no-repeat;
    padding: 5rem 0rem;
    height: auto;
}

.nosotros {
    padding: 1rem 0 0 0;
    display: flex;
}

.nosotros .hero-nosotros {
    display: flex;
    flex-wrap: wrap;
}

.nosotros-index {
    padding: 5rem 0rem;
}

.contenedor-nosotros {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 120rem;
    margin: 0 auto;
}

.nosotros-clinica {
    width: 40%;

}

.nosotros-clinica img {
    width: 100%;
    display: block;
}

.texto-nosotros {
    width: 60%;
    margin: 0 auto;
    padding: 0rem 1rem;
}

.texto-nosotros p {
    text-align: justify;
    font-size: 18px;
    font-weight: 400;
    padding: 1rem;
}

.img-logo {
    max-width: 600px;
    padding: 1rem;
    margin: 0 auto;

}

.texto-nosotros p {
    padding: 2rem;

}

@media screen and (max-width: 992px) {
    .nosotros-clinica {
        width: 100%;
    }

    .texto-nosotros {
        width: 100%;
    }
}

/* FIN sobre nosotros */
/*---------------------------------------------------------------*/
/*contacto*/
@media screen and (max-width: 768px) {
    .img-logo {
        max-width: 350px;
        padding: 2rem;
        margin: 0 auto;
        display: block;
    }
    .texto-nosotros p{
        font-size: 16px;
    }

}

/*-------------------------------------------------------------*/
/*Contactenos Sticker*/

.contactenos-sec {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--blue-color);
}

.contenedor-contactenos-sec {
    height: auto;
    max-width: 1200;
    padding: 5rem 1rem;
}

.contenedor-contactenos-sec p {
    font-size: 18px;
    color: white;
    max-width: 1000px;
}

.contenedor-contactenos-sec button {
    background-color: var(--c);
    border: 1px solid white;
    border-radius: 25px;
    padding: 1rem 5rem;
    font-weight: 800;
}

.contenedor-contactenos-sec button:hover {
    background-color: white;
    color: #003785;
}


