
*{
    margin: 0px;
    padding: 0px;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
/*     font-family: Verdana, Geneva, Tahoma, sans-serif; */
}

html {
    scroll-behavior: smooth;
}

body{
    background-color: var(--color-white);
}

.contenedor{
    width: 80%;
    margin: auto;
}



:root {
    --color-primario: #265378;
    --color-secundario: #81b1db;
    --color-terciario: #219cdc;
    --color-cuarto: #c2e7f8;
    --color-quinto: #a5aaad;
    --color-black: #020202;
    --color-white: whitesmoke;
}

.section_espacio{
    padding: 50px 0;
}

.hidden {
    opacity: 0;
}


.separar{
    padding: 0px 5px 0px 5px;
}

.titulos_h1{
    color: var(--color-black);
    font-size: 35px;
}

a, a:visited, a:hover, a:active {
    color: var(--color-white);
    text-decoration: none; 
}

.wrapper{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(min(11.25rem,100%), 1fr));
    grid-gap: 1rem;
}

@media screen and (max-width: 1120px) {
    .contenedor{
        width: 90%;
    }

}



/* Aca empieza el div2 */

.div2{
    font-size: small;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.div2 .opciones{
    width: 60%;
    justify-content: space-evenly;
    align-items: center;
    display: inline-flex;
    font-size: 1.5em;
    padding-left: 5px;
    box-sizing: border-box;
    flex-wrap: wrap;
    padding: 5px 0 !important;
}

.bot_inicio{
    background-color: var(--color-secundario);
    color: var(--color-black) !important;
    width: 101%;
    height: inherit;
    min-width: 167px;
    border: none;
    border-radius: 25px;
    text-align: center;
    font-size: 15px;
    font-weight: bolder;
    box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.5);
    padding: 18px 15px;
    margin: 2px;
    cursor: pointer;
    transition: transform 0.3s ease; /* Transición en la propiedad transform */
    align-items: center;

}

.bot_inicio:hover{
    color: var(--color-white) !important;
}


.bot_iniciocel{
    background-color: var(--color-primario);
    color: white !important;
    border-radius: 5px;
    width: 135px;
    height: 30px;
    border: none;
    text-align: center;
    font-size: 13px;
    font-weight: bolder;
    margin: 10px 0 10px 10px;
    cursor: pointer;
    transition: transform 0.3s ease; /* Transición en la propiedad transform */
    align-items: center;
    box-sizing: border-box;
    position: fixed;
    top: 30%;
    right: -12%;
    transform: rotate(-90deg);
    z-index: 1000;
    
}

.bot_iniciocel a:visited{
    color: white !important;
}

.bot_inicio:hover {
    transform: translateX(15px); /* Mueve el botón 5px hacia la derecha al pasar el cursor sobre él */
}

/* Animación para cambiar el color */
@keyframes color_anim {
    0% { color: white; }
    50% { color: var(--color-primario); } /* Cambia el color a la mitad de la animación */
    100% { color: white; }
}

/* Estilos para los íconos de flecha */
#angleone,
#angletwo,
#anglethree {
    transition: transform 0.3s ease; /* Transición en la propiedad transform */
}

/* Estilos para el primer ícono */
#angleone {
    transform: translateX(+40%);
}
.bot_inicio:hover #angleone {
    transform: translateX(+40%);
    animation: color_anim 1s infinite 0.2s;
}

/* Estilos para el segundo ícono */
#angletwo {
    transform: translateX(-20%);

}

.bot_inicio:hover #angletwo {
    transform: translateX(-20%);
    animation: color_anim 1s infinite 0.4s;
}

/* Estilos para el tercer ícono */
#anglethree {
    transform: translateX(-90%);
}

.bot_inicio:hover #anglethree {
    transform: translateX(-90%);
    animation: color_anim 1s infinite 0.6s;
}

.sticky{
    position: sticky;
    display: flex;
    align-items: center;
    z-index: 1000;
    top: 0;
    background-color: whitesmoke;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    height: 11vh;
}

.sticky > a{
    display: flex;
    align-items: center;
    max-width: 26%;
    height: 10vh;
}

/* aca empieza el nav-bar */
header{
    width: 100%;
    height: 70px;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 2px 0px 50px;
}

.logo{
    width: 100%;
    max-height: 10vh;
    padding: 13px 0px
}

.bars{
    display: none;
}

.nav-bar{
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-bar ul{
    display: flex;
    align-items: center;
    margin-right: 25px;
}

.nav-bar_lia{
    min-width: 130px;
    display: block;
    color: var(--color-black);
    padding: 10px;
    font-size: 18px;
    border-radius: 15px;
    transition: 0.2s;
    margin: 0 4px;
    align-items: center;
    letter-spacing: 1px; 
    text-align: center;
    cursor: pointer;
}


.nav-bar ul li a:visited{
    color: var(--color-black);
    background-color: var(--color-primario);
}

.nav-bar ul li a:hover{
    color: white !important;
    background-color: var(--color-primario);
}

.nav-bar ul li .bot_inicio a:hover{
    color: white !important;
    background-color: var(--color-secundario);
}

.nav-bar ul li a.active{
    color: white;
    background-color: var(--color-primario);
    font-weight: bolder;    
}


/* aca empiezan los selects para el navbar */

.sub_menu, .sub_menu_interior {
    width: 14%;
    text-align: center;
    position: absolute;
    background-color: var(--color-primario);
    flex-direction: column;
    margin-right: 0px !important;
    text-align: left;
    display: none;
    transition: opacity 0.5s ease, visibility 0.5s ease; /* Agregar transición */
}

.sub_menu{
    top: 70% ;
}

.sub_menu.show, .sub_menu_interior.show {
    opacity: 1;
    visibility: visible;
}

.sub_menu_interior {
    padding: 5px;
}

.opcion_menu{
    width: 100%;

}

.i_none{
    display: flex;
}

.opcion_menu a{
    padding: 10px 10px 15px 10px;
    position: relative;
    color: whitesmoke;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    line-height: 16px;
    font-weight: 400;
    color: var(--color-white) !important;
    font-size: 18px;
}

.opcion_menu_interior{
    width: 100%;
}



.opcion_menu_interior a {
    padding-bottom: 10px;
    position: relative;
    color: whitesmoke;
    margin: 5px 5px 0px 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    line-height: 16px;
    font-weight: 400;
    color: var(--color-white) !important;
    font-size: 18px;
}


.opcion_menu i {
    line-height: 16px;
    align-items: center;
}

.opcion_menu ul {
    left: 100%;
    top: 0px;
    min-width: 85%;
    opacity: 1 !important;
}



.sub_menu_interior {
    padding: 5px;
    opacity: 1;
    transition: opacity 0.3s ease; /* Agregar transición de opacidad */
}

.sub_menu_interior.hidden {
    opacity: 0; /* Cambiar opacidad cuando se oculta */
}





/* Estos con background son  para mantener un color y que no se vea afectado por el hover */

.sub_menu_interior{ 
    opacity: 1 !important;
    background-color: #326a98;
    border: none;
}

.opcion_menu_interior a{
    background-color: #326a98 !important;
}


.opcion_menu:hover {
    background-color: #326a98 !important;
}

.opcion_menu:hover ul.sub_menu_interior {
    opacity: 1 !important;
}

.opcion_menu:hover > a,
.opcion_menu:hover > i {
    background-color: #326a98 !important;
}

.opcion_menu_interior:hover{
    opacity: 0.7;
}


@media(max-width:1120px) {

    header{
        padding: 0px 30px;
    }

    .bars{
        display: block;
        cursor: pointer;
    }

    .bars .line{
        width: 30px;
        height: 3px;
        background-color: var(--color-primario);
        margin: 6px 0px;
    }

    .nav-bar {
        display: flex;
        flex-direction: column;
        height: 0px;
        position: absolute;
        top: 84px;
        left: 0;
        right: 0;
        width: 100vw;
        background-color: var(--color-white);
        transition: 0.5s;
        overflow: hidden;
    }

    .nav-bar.active {
        height: 400px;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    }

    .nav-bar ul {
        display: block;
        width: fit-content;
        margin: 20px auto 0 auto;
        text-align: center;
        transition: 0.5s;
        opacity: 0;
    }

    .nav-bar.active ul {
        opacity: 1;
    }

    .nav-bar ul li a {
        margin-bottom: 20px;
    }

    .bot_inicio{
        display: none;
    }

    .sticky > a{
        max-width: 27%;
    }

    .logo{
        width: 100%;
        height: auto;
    }

    .sub_menu{
        top: 26% !important;
    }

    .sub_menu_interior{
        top: -20px !important;
    }

    .opcion_menu a{
        margin: 0px !important;
    }

}

@media(max-width:650px) {
    .sub_menu{
        top: 24% !important;
        right: 40%;
        width: 50% !important;
        font-size: 10px;
    }

    .sub_menu_interior{
        top: -20px !important;
    }

    .nav-bar{
        top: 70px;
    }

    .nav-bar ul li a {
        margin-bottom: 10px;
    }

    .bot_inicio{
        display: none;
    }

    .nav-bar.active {
        height: 250px;
    }

    .sticky > a{
        max-width: 45%;
    }

    .logo{
        width: 100%;
        height: auto;
    }

    .i_none{
        display: none !important;
    }

    .opcion_menu{
        display: none !important;
    }

}

@media(max-width:450px){
    .bot_iniciocel{
        top: 30%;
        right: -14%;
    }
}



/* Aca empieza el div3 */
.div3 {
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    display: flex;
}


.div3_carrusel{
    width: 100%;
    height: 65vh;
}


.div3_imagen {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.div3_imagen1 {
    position: relative; 
    width: 100%; 
    height: inherit; 
    overflow: hidden;
    object-fit: cover;
    object-position: bottom left;
}

.div3_imagen2{
    position: relative; 
    width: 100%; 
    height: inherit; 
    overflow: hidden;
    object-fit: cover;
    object-position: top left;
}

.div3_imagen3{
    position: relative; 
    width: 100%; 
    height: inherit; 
    overflow: hidden;
    object-fit: cover;
    object-position: bottom;
}


/* .div3_imagen img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}
 */
.div3_interior {
    background-color: rgba(40, 40, 40, 0.6);
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    max-width: 62%;
    padding-bottom: 20px; 
}

.div3_interior h2, .div3_interior p, .div3_interior .div3_boton {
    margin: 10px 0;
}

.div3_interior h2{
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: bolder;
}

.div3_interior p{
    font-size: 28px;
    width: 57%;
    margin-bottom: 20px;
}

.div3_boton1{
    padding: 5px 10px 5px 10px;
    color: white;
    font-size: 22px;
    text-align: center;
    border: none;
    border-radius: 25px;
    background-color: var(--color-primario);
    width: 10%;
    min-width: 160px;
    height: 50px;
    min-height: 50px;
    cursor: pointer;
    z-index: 2;
}

.div3_boton2{
    padding: 5px 10px 5px 10px;
    color: white;
    font-size: 22px;
    border: none;
    border-radius: 25px;
    background-color: var(--color-primario);
    z-index: 2;
    cursor: pointer;
}


.conteCarrousel {
    width: 100%;
    height: inherit;
    overflow: hidden;
    position: relative;
}

.itemCarrousel {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: inherit;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.itemCarrousel.active {
    opacity: 1;
    z-index: 1;
}


.itemCarrouselArrows {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.itemCarrouselArrows > i:hover {
    cursor: pointer;
}


.itemCarrouselArrows > a > i {
    color: var(--color-white);
}



@media(max-width:1180px) {
    .div3_interior{
        width: 100%;
    }

    .div3_boton1{
        width: 18%;
    }

    .div3_interior h2 {
        width: 80%;
        margin-bottom: 5px;
    }
    
    .div3_interior p {
        width: 95%;
        letter-spacing: 0px;
        padding: 0px 0px 5px 34px;
    }
}

@media(max-width:650px) {
    .div3_carrusel{
        height: 75vh;
    }

    .div3_boton1{
        width: 18%;
        padding: 0px;
    }

    .itemCarrouselArrows{
        padding: 5px;
    }

    .div3_interior{
        max-width: 78%;
    }

    .div3_interior h2 {
        width: 95%;
        margin-bottom: 25px;
        font-size: 28px;
    }
    
    .div3_interior p {
        width: 95%;
        font-size: 20px;
        margin-bottom: 25px;
        letter-spacing: 0px;
        padding: 0px
    }

  .div3_boton2{
    font-size: 16px;
  }

}


/* Aca empieza el div4 */


@keyframes aparecer {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.div4_titulo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    text-align: center;
    animation: aparecer 1s ease forwards;
}


.div4_titulo.aparecer {
    opacity: 1;
}


.div4_titulo p {
    width: 40%;
    font-size: large;
    margin: 20px 0px;
}


.div4_servicios{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}


.div4_servicioscel{
    display: none;
}


.servicios_titulo{
    display: flex;
}


.servicios_tipos{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 450px);
    gap: 40px;
    scroll-behavior: smooth;
    padding: 20px 0px 40px 0px;
    justify-content: center
}


.tarjeta__content p{
    text-align: center;
}


.title_img_tarjeta {
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    top: 55%;
    color: var(--color-primario);
    width: 100%;
    text-align: center;
}


.icon_img_tarjeta {
    position: absolute;
    top: 4%;
    text-align: center;
    width: 15%;
}


.icon_img2 {
    width: 15%;
}


.tarjeta_icon{
    position: absolute;
    width: 150px;
    margin: 20px;
}


.plus_img_tarjeta {
    position: absolute;
    width: 10%;
    bottom: 0;
    margin: 20px;
    padding: 6px 5px 6px 5px;
    text-align: center;
    background-color: var(--color-cuarto);
    border-radius: 20px;
}


.bot_serv {
    width: 45%;
    background-color: var(--color-terciario);
    border: var(--color-cuarto) 2px solid;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    padding: 6px 5px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: absolute;
    min-width: 150px;
}

.bot_servcel{
    width: 45%;
    background-color: var(--color-terciario);
    border: var(--color-cuarto) 2px solid;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    padding: 6px 5px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: absolute;
    min-width: 150px;
}


.bot_serv a,
.bot_serv a:active,
.bot_serv a:visited {
    color: var(--color-white);
}


.bot_serv:hover a {
    color: var(--color-white);
}


.bot_serv:hover {
    border: var(--color-secundario) 2px solid;
    font-size: 15px;
    font-weight: 600;
    background-color: var(--color-primario);
    border-radius: 5px;
    padding: 6px 5px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: absolute;
}


.bot_serv,.bot_serv:hover  {
    top: 335px;
}

.tarjeta {
    position: relative;
    display: flex;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-width: 430px;
    box-shadow: 0px 3px 10px 0px rgba(0,0,0,0.6);
    height: 400px;
    border-radius: 4px;
}


.overlay_serv {
    position: relative;
    width: 100%;
    height: 100%;
}


.overlay_serv::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-cuarto);
    opacity: 0.5; /* Ajusta este valor para cambiar la transparencia */
    z-index: 1;
}


.content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}


.tarjeta__image {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
}


.tarjeta__content {
    position: absolute;
    background-color: #f2f2f2;
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;  
/*     Acá van las animaciones    */
    transform: rotateX(-90deg);
    transform-origin: bottom;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.tarjeta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}


.tarjeta:hover .tarjeta__content {
    transform: rotateX(0deg);
}


.tarjeta__title {
    background-color: #f2f2f2;
    margin-top: 30px;
    font-size: 24px;
    color: #333;
    font-weight: 700;
}


.tarjeta:hover svg {
    scale: 0;
}


.tarjeta__description {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: #f2f2f2;
    margin-top: 25px;
    font-size: 18px;
    color: #777;
    line-height: 1.4;
}


/* Estos son los medias nuevos */


@media only screen and (max-width: 1500px) {
    .servicios_tipos{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 300px);
    }


    .tarjeta {
        min-width: 300px;
        height: 300px;
    }


    .tarjeta__content {
        min-width: 300px;
        height: 300px;
    }


    .tarjeta_icon {
        width: 100px;
    }


    .title_img_tarjeta {
        font-size: 25px;
        top: 45%;
    }


    .tarjeta__description {
        font-size: 13px;
        margin-top: 15px;
    }


    .bot_serv,
    .bot_servcel,
    .bot_serv:hover{
        top: 245px;
    }
}


@media only screen and (max-width: 1100px) {
    .div4_servicios{
        display: none;
    }


    .div4_servicioscel{
        display: flex;
        justify-content: center
    }


    .servicios_tiposcel{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 25px;
    }


    .tarjeta {
        width: 300px;
    }


    .div4_titulo p {
        width: 85%;
    }
}


/* Acá empieza el div5 */


.fade-in-left {
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft 0.8s forwards;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.div5_impulsa{
    height: auto;
    display: flex;
    margin-bottom: 10px;
    opacity: 0;
}

.divimg_impulsa{
    width: 45%;
    display: flex;
    justify-content: right;
}

.text_impulsa{
    width: 50%;
    margin-left: 50px;
}

.img_impulsa{
    height: 36vh;
    width: 75%;
    min-width: 230px;
    position: relative;
    object-fit: cover;
    overflow: hidden;
    object-position: left top;
}


.div5_impulsa h1{
    margin: 10px 0 15px 0;
}

.div5_impulsa p{
    width: 70%;
    font-size: large;
    margin: 10px 0px;
}

.div5_boton{
    padding: 5px 10px 5px 10px;
    margin-top: 10px;
    color: white;
    font-size: 22px;
    text-align: center;
    border: none;
    border-radius: 15px;
    background-color: var(--color-primario);
    width: 37%;
    min-width: 260px;
    height: 5vh;
    min-height: 50px;
    cursor: pointer;
}

@media screen and (max-width: 1120px) {
    .div5_impulsa{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .img_impulsa{
        width: 100%;
    }

    .divimg_impulsa{
        width: 80%;
    }

    .text_impulsa{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0;
    }

    .div5_impulsa p{
        text-align: center;
        width: 90%;
        margin: auto;
    }

    .div5_impulsa h2{
        text-align: center;
    }

    .div5_impulsa h1{
        text-align: center;
    }
}

@media screen and (max-width: 650px) {

    .img_impulsa{
        min-width: 200px;
    }

}

/* Aca empieza el div6 */

.div6_titulo {
    display: flex; /* Mantener el display flex para el layout */
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    text-align: center;
    animation: aparecer 1s ease forwards;
}


.div6 {
    width: 100%;
    background-color: var(--color-primario);
    overflow: hidden;
}

.div6_cuerpo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: inherit;
}

.div6_interior {
    width: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 40px;
}

.slide img {
    width: 60%;
    padding: 3px;
}

.circulo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 125px;
    height: 125px;
    background-color: var(--color-white);
    flex-shrink: 0;
    border: 3px solid #373535;
    border-radius: 50%;
    box-shadow: 3px 3px 2px #373535;
}


@-webkit-keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 7));
    }
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 7));
    }
  }
  
  .slider {
    background: var(--color-primario);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
    height: 180px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  
  .slider::before, .slider::after {
    background: linear-gradient(to right, var(--color-primario) 50%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: inherit;
    position: absolute;
    width: 15%;
    z-index: 2;
  }
  
  .slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
  }
  
  .slider::before {
    left: 0;
    top: 0;
  }
  
  .slider .slide-track {
    -webkit-animation: scroll 40s linear infinite;
            animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
    align-items: center;
  }
  
  .slider .slide {
    width: 250px;
  }
  



@media screen and (max-width: 1120px) {

    .div6_cuerpo {
        align-items: center;
        margin: 0 !important;
        width: 100% !important;
    }


    .div6_interior {
        width: 20%;
    }

    .circulo {
        width: 100px;
        height: 100px;
    }

    .slider {
        width: 100%;
    }

    .slider::before,
    .slider::after {
        width: 15%;
    }

    .slide {
        width: 20%; /* Ajusta el ancho de los slides para pantallas medianas */
    }

    .slide-track {
        width: calc(250px * 12) !important; /* Ajusta el ancho del track para pantallas medianas */
    }

}

@media screen and (max-width: 650px) {

    .div6_interior {
        width: 25%;
    }

    .slider .slide-track {
        width: calc(250px* 8) !important;
    }
    .circulo {
        width: 80px;
        height: 80px;
    }

    .slider {  
        height: 140px;
    }

    .slider::before,
    .slider::after {
        width: 15%;
    }

    .slide {
        width: 30%; /* Ajusta el ancho de los slides para pantallas pequeñas */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slide-track {
        width: calc(80px * 36); /* Ajusta el ancho del track para pantallas pequeñas */
        animation: scroll 40s linear infinite;
    }
}




/* Acá empieza el div7 */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-upp {
    animation: fadeInUp 1s ease forwards; /* Duración de 2 segundos */
}

.div7_titulo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    text-align: center;
    opacity: 1; /* Ocultamos el elemento inicialmente */
}

.div7_porque {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    opacity: 0;
}

.div7_left {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    opacity: 0;
}

.div7_right {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    opacity: 0;
}

.div7_divimgleft {
    width: 35%;
    display: flex;
    justify-content: right;
}

.div7_divimgright {
    width: 35%;
    display: flex;
}

.div7_imgleft {
    height: 33vh;
    width: 100%;
    min-width: 230px;
    position: relative;
    object-fit: cover;
    overflow: hidden;
    object-position: left top;
    padding: 0 20px;
}

.div7_imgright {
    height: 33vh;
    width: 100%;
    min-width: 230px;
    position: relative;
    object-fit: cover;
    overflow: hidden;
    object-position: right bottom;
    padding: 0 20px;
}

.div7_text {
    width: 50%;
}

.div7_text h2{
    font-size: 32px;
}

.div7_text p {
    width: 100%;
    font-size: large;
    margin: 35px 0px;
}


@media screen and (max-width: 650px) {
    .div7_left{
        flex-direction: column;
        align-items: center
    }
    .div7_right{
        flex-direction: column-reverse;
        align-items: center
    }

    .div7_divimgleft{
        width: 90%;
    }

    .div7_divimgright{
        width: 90%;
    }

    .div7_text{
    width: 90%;
    text-align: center;
    }

    .div7_text h2{
        margin-top: 20px;
    }
}

/* Aca empieza el div72 */


.div72_titulo{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: aparecer 1s ease forwards;
}




/* Nuevo portafolio REVISAR */

.wrapy {
    position: relative;
    display: flex;
    width: 80%;
    margin: auto;
    justify-content: center;
    margin-top: 20px;
    padding: 5px;
}

.wrapy .wrapyii {
    top: 50%;
    height: 42px;
    width: 42px;
    cursor: pointer;
    position: absolute;
    text-align: center;
    line-height: 42px;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0,0,0,0.23);
    transform: translateY(-50%);
    transition: transform 0.1s linear;
    color: white;
    font-size: 22px;
    background-color: var(--color-primario);
}

.wrapy i:active{
    transform: translateY(-50%) scale(0.85);
}

.wrapy i:first-child{
    left: -22px;
}

.wrapy i:last-child{
    right: -22px;
}

.wrapy .carousel{
    display: grid;
    width: 90%;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 12px);
    overflow: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    border-radius: 8px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel.no-transition {
    scroll-behavior: auto;
}

.carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
}
.carousel.dragging .card {
    cursor: grab;
    user-select: none;
}
.carousel :where(.card, .img) {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}
.carousel .card {
    scroll-snap-align: start;
    list-style: none;
    flex-direction: column;
    display: flex;
    border-radius: 4px;
    background-color: rgb(230, 230, 230);
    margin-bottom: 20px;
}

.card .img img {
    width: 100%;
    height: auto;
    object-fit: contain;

}

.porta_tecno {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 15px 0px;
    align-items: center;
    justify-content: center;
    align-content: flex-start;
}

.card_porta1, .card_porta2, .card_porta3, .card_porta4, .card_porta5 {
    margin: 5px 5px;
    padding: 5px 5px;
    border-radius: 5px;
    text-align: center;
    min-width: 100px;
}

.card_porta1 {
    background-color: var(--color-primario);
    color: white;
}

.card_porta2 {
    background-color: #7d2e34;
    color: white;
}

.card_porta3 {
    background-color: #e1231c;
    color: white;
}

.card_porta4 {
    background-color: #b6d0de;
    color: var(--color-black);
}

.card_porta5 {
    background-color: #ffc436;
    color: var(--color-black);
}

.porta_desc {
    margin: 0px 10px 10px 10px;
    flex: 1; /* Este flex: 1 permitirá que esta sección ocupe todo el espacio disponible */
}

.porta_desc h1 {
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
}

.porta_desc p {
    display: flex;
    align-items: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding: 5px 10px;
}

.porta_desc i {
    font-size: 0.3em;
    margin-right: 5px;
}

.portafolio_visita {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: flex-end;
    align-content: flex-end;
    margin-top: auto; /* Este margen empujará esta sección al final de la tarjeta */
}

.portafolio_visita a {
    color: rgb(96, 96, 96);
    margin: 10px 0px;
    text-decoration: underline;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.portafolio_visita i {
    font-size: 10px;
}

.portafolio_visita a:hover {
    color: var(--color-black);
}


@media screen and (max-width: 1400px) {
    .wrapy .carousel {
    grid-auto-columns: calc((100% / 2) - 9px);
    }
}

@media screen and (max-width: 600px) {
    .wrapy .carousel {
    grid-auto-columns: 100%;
    }
}

/* Aca empieza el div8 */

.div8{
    width: 100%;
    background-image: url(../img/4.webp);
    background-position: center left; /* Centro horizontal y 20 píxeles desde el fondo */
    background-repeat: no-repeat;
    background-size: cover;
}

.div8_grande{
    display: flex;
    height: inherit;
}

.div8_blank{
    margin-top: 50px;
    width: 50%;
    display: flex;
    flex-direction: column;
    color: var(--color-white);
}

.div8_textito{
    width: 65%;
    display: flex;
    flex-direction: column;
}


.div8_textito h1{
    font-size: 35px;
    padding: 10px ;
    font-weight: 600;
}

.div8_textito p{
    font-size: 25px;
    padding: 10px 10px 20px 10px;
}


.div8_formulario{
    margin: 40px 0px;
    background-color: var(--color-white);
    width:48%;
    display: flex;
    flex-direction: column;
    border-radius: 7px;
}

.div8_interior1{
    padding: 10px 0px 0px 20px;
    width: 70%;
    display: flex;
    flex-direction: column;
}

.div8_interior1 h3{
    color: var(--color-primario);
    font-size: 28px;
}

.div8_interior1 h2{
    font-size: 32px;
}


.div8_interior2{
    width: 100%;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-black);
}


.div8_item{
    width: 95%;
    padding: 10px 5px;
}

.texto_formulario1{
    background-color: var(--color-secundario);
    border-radius: 5px;
    color: var(--color-black);
    border: none;
    width: 100%;
    height: 4vh;
    padding-left: 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    font-size: medium;
    font-weight: 400;
    display: flex;
}

::placeholder {
    color: var(--color-black);
}

.texto_formulario2{
    background-color: var(--color-secundario);
    border-radius: 5px;
    color: var(--color-black);
    border: none;
    width: 100%;
    height: 15vh;
    padding-left: 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    font-size: medium;
    font-weight: 400;
    display: flex;
    align-items: flex-start;
    margin-right: 8px;
}


.div8_interior3{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin: 20px 0px;

}

.div8_bott{
    background-color: var(--color-primario);
    color: white;
    border-radius: 15px;
    width: 20%;
    height: 45px;
    border: none;
    text-align: center;
    font-size: medium;
    font-weight: bolder;
    box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.5);
    padding: 0 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

@media screen and (max-width: 1120px) {    
    .div8_blank{
        display: none;
    }

    .div8_formulario{
        width: 100%;
    }

    .div8_bott{
        width: 32%;
        min-width: 80px;
    }
}


@media screen and (max-width: 650px) {    
    .div8_grande{
        display: flex;
        flex-direction: column;
    }

    .div8_blank{
        display: none;
    }

    .div8_formulario{
        width: 100%;
    }

    .div8_bott{
        width: 32%;
        min-width: 120px;
    }
}




/* Acá empieza el div9 */

.div9_piepagina{
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: flex-start;
    padding: 20px !important;

}

.div9_logo{
    display: flex;
    align-items: center;
    width: 16%;
    min-width: 200px;
    margin-top: 20px;
}

.div9_texto{
    display: flex;
    width: 50%;
    justify-content: space-around;
}

.div9_texto1{
    display: flex;
    flex-direction: column;
}

.div9_texto1 h2{
    color: var(--color-primario);
    padding-bottom: 10px;
}

.div9_texto1 a{
    color: #444444;
}

.div9_texto1 a:visited{
    color: #444444;
}

.div9_texto2{
    display: flex;
    flex-direction: column;
}

.div9_texto2 h2{
    color: var(--color-primario);
    padding-bottom: 10px;
}

.div9_iconos{
    display: flex;
    align-items: baseline;
    padding: 5px;
    color: #444444;
}

.div9_bott{
    background-color: var(--color-primario);
    color: white;
    border-radius: 20px;
    width: 80%;
    min-width: 150px;
    border: none;
    text-align: center;
    font-size: 1em;
    font-weight: bolder;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    margin: 5px auto;
    padding: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
}


@media screen and (max-width: 1120px) {

    .div9_texto{
        display: flex;
        width: 75%;
        justify-content: space-around;
    }

    .div9_bott{
        width: 60%;
    }

}

@media screen and (max-width: 650px) {

    .div9_piepagina{
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: space-around;
        align-items: flex-start;
        padding-top: 20px !important;
    
    }
    
    .div9_texto{
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: space-around;
    }

    .div9_texto1{
        padding: 20px 0px;
    }

    .div9_texto2{
        width: 100%;
    }


    .div9_bott{
        width: 60%;
        margin: 15px auto 5px auto;

    }

}

/* Aca empieza Div10 barra inferior */

.div10{
    display: flex;
    align-items: center;
    background-color: var(--color-primario);
    width: 100%;
    justify-content: flex-start;
}

.inferior1{
    display: flex;
    align-items: center;
}

.inferior1 p{
    color: white;
    padding: 0px 5px;
}

.inferior1 a{
    color: white;
    font-size: larger;
}

.miniatura_pidgan{
    width: 60px;
    margin: 5px 5px 5px 0px;
    padding-left: 20px;
}

@media screen and (max-width: 650px) {
    .div10{
        flex-direction: column;
        padding: 5px 0px;
    }

    .inferior1{
        flex-direction: column;
        align-items: center;
    }

    .miniatura_pidgan{
        width: 45px;
        margin: 0px auto;
        padding: 0px;
    }

    .inferior1 a{
        font-size: small;
    }

    .inferior1 p{
        font-size: smaller;
    }

}

.whatsapp-button{
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    z-index: 9999;
    text-align: center;
    line-height: 66px;
}

.whatsapp-button_imagen{
    width: 100%;
    height: 100%;
}

.whatsapp-button_imagen img{
    object-fit: contain;
    width: 100%;
    height: inherit;
}


.whatsapp-button:hover {
    transform: scale(1.1);
    transition: transform 0.3s;
}

@media screen and (max-width: 650px) {
    .whatsapp-button{
        right: 15px !important;
    }

    .tooltip-container{
        right: 17px !important;
    }
}



/* Configuración formulario */

.swal2-confirm.custom-red-button {
    background-color: var(--color-primario) !important;
    color: white !important;
}


.dot-spinner {
    --uib-size: 2.8rem;
    --uib-speed: .9s;
    --uib-color: var(--color-primario);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--uib-size);
    width: var(--uib-size);
  }
  
  .dot-spinner__dot {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
  }
  
  .dot-spinner__dot::before {
    content: '';
    height: 20%;
    width: 20%;
    border-radius: 50%;
    background-color: var(--uib-color);
    transform: scale(0);
    opacity: 0.5;
    animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
    box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
  }
  
  .dot-spinner__dot:nth-child(2) {
    transform: rotate(45deg);
  }
  
  .dot-spinner__dot:nth-child(2)::before {
    animation-delay: calc(var(--uib-speed) * -0.875);
  }
  
  .dot-spinner__dot:nth-child(3) {
    transform: rotate(90deg);
  }
  
  .dot-spinner__dot:nth-child(3)::before {
    animation-delay: calc(var(--uib-speed) * -0.75);
  }
  
  .dot-spinner__dot:nth-child(4) {
    transform: rotate(135deg);
  }
  
  .dot-spinner__dot:nth-child(4)::before {
    animation-delay: calc(var(--uib-speed) * -0.625);
  }
  
  .dot-spinner__dot:nth-child(5) {
    transform: rotate(180deg);
  }
  
  .dot-spinner__dot:nth-child(5)::before {
    animation-delay: calc(var(--uib-speed) * -0.5);
  }
  
  .dot-spinner__dot:nth-child(6) {
    transform: rotate(225deg);
  }
  
  .dot-spinner__dot:nth-child(6)::before {
    animation-delay: calc(var(--uib-speed) * -0.375);
  }
  
  .dot-spinner__dot:nth-child(7) {
    transform: rotate(270deg);
  }
  
  .dot-spinner__dot:nth-child(7)::before {
    animation-delay: calc(var(--uib-speed) * -0.25);
  }
  
  .dot-spinner__dot:nth-child(8) {
    transform: rotate(315deg);
  }
  
  .dot-spinner__dot:nth-child(8)::before {
    animation-delay: calc(var(--uib-speed) * -0.125);
  }
  
  @keyframes pulse0112 {
    0%,
    100% {
      transform: scale(0);
      opacity: 0.5;
    }
  
    50% {
      transform: scale(1);
      opacity: 1;
    }
  }


.modal {
    display: none; /* Oculto por defecto */
    position: fixed; /* Posición fija para el modal */
    z-index: 1000; /* Asegurarse de que esté por encima de otros elementos */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Desactivar el desplazamiento */
    background-color: rgba(0, 0, 0, 0.1); /* Fondo transparente */
}



.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}


/* This is an example, feel free to delete this code */
.tooltip-container {
    background: rgb(3, 169, 244);
    background: linear-gradient(
      138deg,
      rgba(3, 169, 244, 1) 15%,
      rgba(63, 180, 233, 1) 65%
    );
    position: fixed;
    bottom: 96px;
    right: 33px;
    z-index: 9999;
    cursor: pointer;
    font-size: 17px;
    padding: 21px 13px;
    border-radius: 50%;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  }
  .tooltip-container:hover {
    background: #fff;
    transition: all 0.6s;
  }
  .tooltip-container .text {
    display: flex;
    align-items: center;
    justify-content: center;
    fill: #fff;
    transition: all 0.2s;
  }
  .tooltip-container:hover .text i {
    transition: all 0.6s;
	color: rgb(3, 169, 244);
  }
  
  /* Inicio do tooltip facebook */
  .tooltip2 {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    background: #fff;
    fill: #0462df;
    padding: 5px;
    border-radius: 50px;
    transition: opacity 0.3s, visibility 0.3s, top 0.3s, background 0.3s;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  .tooltip-container:hover .tooltip2 {
    top: -120%;
    opacity: 1;
    visibility: visible;
    background: #fff;
    transform: translate(-50%, -5px);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .tooltip-container:hover .tooltip2:hover {
    background: #1876f269;
  }
  /* Fim do tooltip facebook */
  
  
  /* Inicio do tooltip Linkedin */
  .tooltip4 {
    position: absolute;
    top: 100%;
    left: -190%;
    transform: translateX(70%);
    opacity: 0;
    visibility: hidden;
    background: #fff;
    fill: #8c9eff;
    padding: 5px;
    border-radius: 50px;
    transition: opacity 0.3s, visibility 0.3s, top 0.3s, background 0.3s;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  .tooltip-container:hover .tooltip4 {
    top: 10%;
    opacity: 1;
    visibility: visible;
    background: #fff;
    transform: translate(70%, -5px);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tooltip-container:hover .tooltip4:hover {
    background: #0077b569;
    fill: #fff;
  }

  
  /* Inicio do tooltip Instagram */
  .tooltip5 {
    position: absolute;
    top: 100%;
    left: -145%;
    transform: translateX(70%);
    opacity: 0;
    visibility: hidden;
    background: #fff;
    fill: #bd081c;
    padding: 5px;
    border-radius: 50px;
    transition: opacity 0.3s, visibility 0.3s, top 0.3s, background 0.3s;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  .tooltip-container:hover .tooltip5 {
    top: -78%;
    opacity: 1;
    visibility: visible;
    background: #fff;
    transform: translate(70%, -5px);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tooltip-container:hover .tooltip5:hover {
    background: #e4405e69;
    fill: #fff;
  }
 
   
  /* Inicio do tooltip fixo */
  .tooltip9 {
    position: absolute;
    top: 0;
    left: -115%;
    opacity: 0;
    visibility: hidden;
    width: 150px;
    height: 150px;
    z-index: -1;
  }
  
  .tooltip-container:hover .tooltip9 {
    top: -110%;
    opacity: 1;
    visibility: visible;
    border-radius: 50%;
    z-index: -1;
  }
  /* Fim do tooltip fixo */
  /* Por meio desse ultimo tooltip todos os outros podem
  ficar fixos quando houver no principal, para vê-lo dê um
  background black acima*/
  

.redes{
	width: 30px;
	height: 30px;
}

.text i{
	color: white;
}


.pagina_pidgan {
    text-decoration: underline;
    font-weight: bold;
    font-size: 20px;
}