@import url('https://fonts.googleapis.com/css2?family=Vina+Sans&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2 {
    font-family: 'Comfortaa', cursive;
}

body {
    font-family: 'Comfortaa', cursive;
}

.contenedor {
    padding: 60px 0;
    width: 90%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

.titulo {
    color: #642a73;
    font-size: 40px;
    text-align: center;
    margin-bottom: 30px;
}


/* Header styles for all screen sizes */

.logo-container {
    text-align: center;
}

.logo-container img {
    max-width: 800px;
    /* Ajusta el tamaño máximo del logo */
    margin-bottom: 30px;
}

header {
    width: 100%;
    height: 800px;
    background: #bc4e9c;
    background: -webkit-linear-gradient(to right, hsla(36, 53%, 47%, 0.459), hsla(317, 45%, 52%, 0.664)), url(../img/imgIndex/IMG-20230810-WA0021.jpg);
    background: linear-gradient(to right, hsla(51, 100%, 50%, 0.459), hsla(51, 94%, 19%, 0.459)), url(../img/imgIndex/IMG-20230810-WA0021.jpg);
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

nav {
    position: fixed;
    /*left: 20px; */
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*align-content: center; */
    height: 50px;
    width: 100%;
    /* text-align: left; */
    /* padding: 30px 50px 0 0; */
    z-index: 2000;
    padding-left: 150px;
    padding-right: 150px;
    background-color: #0f0f0f;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #0f0f0f;
    margin: 3px 0;
}

.cosita {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    right: 0;

}

.cosita>a {
    color: #fff;
    font-weight: 300;
    margin-left: 15px;
    text-decoration: none;
    font-size: 1.2rem;

}

.cosita a:hover {
    color: #db7805;
}

nav>a {
    color: #fff;
    font-weight: 300;
    text-decoration: none;
    margin-right: 10px;
    text-align: right;
}

nav>a:hover {
    text-decoration: none;
    color: #db7805;

}

header .textos-header {
    display: flex;
    height: 430px;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.textos-header h1 {
    font-size: 60px;
    color: #ffffff;
    margin-top: 200px;
}

.textos-header h2 {
    font-size: 30px;
    font-weight: 300;
    color: #fff;

}

.wave {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.logo {
    color: rgb(233, 79, 7);
    font-size: 2rem;
    font-family: 'Vina Sans', cursive;

}

.logo span a {
    font-family: 'Vina Sans', cursive;
    color: rgb(255, 255, 255);
    font-size: 2rem;
    text-decoration: none;

}

.logo span a:hover {
    color: rgb(233, 79, 7);
    cursor: pointer;
    text-decoration: none;
}

/* boton regresar arriba */
#back-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color:  rgb(233, 79, 7);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s;
    width: 50px;
    z-index: 999;
    /* Asegura que el botón esté por encima de otros elementos */
}

#back-to-top-btn:hover {
    background-color: white;
    color: rgb(233, 79, 7);
    box-shadow: 0 2px 4px rgba(216, 71, 5, 0.3);
    transform: scale(1.1);
}

#back-to-top-btn span {
    font-size: 20px;
    /* Ajusta el tamaño de la fuente según tus preferencias */
    font-weight: bold;
    /* Agrega negrita para hacer la flecha más gruesa */
}

/* boton wasap */
.whatsapp-link {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    /* Asegura que el botón esté por encima de otros elementos */
}

.whatsapp-link img {
    width: 100%;
    /* Puedes ajustar el tamaño del ícono de WhatsApp */
}

.whatsapp-link img:hover {
    transform: scale(1.2);
    cursor: pointer;
}

@media screen and (max-width: 768px) {

    /* Ajusta la posición para dispositivos más pequeños */
    #back-to-top-btn {
        bottom: 5px;
        right: 5px;
    }


    #back-to-top-btn {
        position: fixed;
        bottom: 10px;
        right: 10px;
        background-color: rgb(233, 79, 7);
        color: white;
        border: none;
        padding: 5px;
        border-radius: 5px;
        cursor: pointer;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        transition: opacity 0.3s;
        width: 30px;
        height: 30px;
        z-index: 999;
        /* Asegura que el botón esté por encima de otros elementos */
    }

    #back-to-top-btn:hover {
        background-color: white;
        color: rgb(233, 79, 7);
        box-shadow: 0 2px 4px rgba(216, 71, 5, 0.3);
        transform: scale(1.1);
    }

   #back-to-top-btn span {
        font-size: 15px;
        /* Ajusta el tamaño de la fuente según tus preferencias */
        font-weight: bold;
        /* Agrega negrita para hacer la flecha más gruesa */
    }

    /* boton wasap */
    .whatsapp-link {
        position: fixed;
        bottom: 50px;
        right: 10px;
        width: 30px;
        background-color: #25D366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        /* Asegura que el botón esté por encima de otros elementos */
    }

    .whatsapp-link img {
        width: 100%;
        /* Puedes ajustar el tamaño del ícono de WhatsApp */
    }

    .whatsapp-link img:hover {
        transform: scale(1.2);
        cursor: pointer;
    }



}

/* --------------------------------------------------------estilos index.html-----------------------------------------------------------------------------------------*/

main .sobre-nosotros {
    padding: 30px 0 60px 0;
}


.image-container {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

img.portada {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.contenedor-sobre-nosotros {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    line-height: 2;
    margin: 15px;
}

.contenedor-sobre-nosotros img {
    width: 40%;
}

.contenedor-sobre-nosotros p {
    line-height: 2;
    margin: 15px;
    /* Eliminar márgenes predeterminados */
    text-align: justify;
}

.imagen-about-us {
    width: 30%;
    margin-left: 20px;
    margin-right: 20px;
    padding: 30px 0 60px 0;
}

.sobre-nosotros .contenido-textos {
    width: 48%;
}

.contenido-textos h3 {
    margin-bottom: 15px;
     line-height: 2;
}



.contenido-textos p {
    padding: 0px 0px 30px 15px;
    font-weight: 300;
    text-align: justify;
     line-height: 2;
}

/* nuestros aliados */
.contenedor-sobre-nosotros-aliados {
    display: flex;
    justify-content: center;
    gap: 20px;
    /* Espacio entre las cartas */
    width: 100%;
}

.imagen-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    height: 50%;
}

.imagen-card img {
    width: 70%;

}

.contenedor-sobre-nosotros-aliados :hover {
    transform: scale(1.1);
}


/* --------------------------------------- */

.portafolio {
    background: #f2f2f2;
    margin-top: 40px;
}

.galeria-port {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;

}

.imagen-port {
    width: 30%;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, .10);
}

.imagen-port>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.6);
}

.hover-galeria {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    transform: scale(0);
    background: hsla(39, 91%, 27%, 0.7);
    transition: transform .5s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.6);
}

.hover-galeria img {
    width: 50px;
}

.hover-galeria p {
    color: #fff;
}

.imagen-port:hover .hover-galeria {
    transform: scale(1);
}


/* Estilos del botón */
.boton-ver-mas {
    background-color: #081308;
    border: none;
    color: white;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    border-radius: 10px;
    transition-duration: 0.4s;
    margin-top: 20px;
}

.boton-ver-mas:hover {
    background-color: #eeeeee;
    cursor: pointer;
    color: black;
}

/* genreciaaaaa*/

.cards {
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;
}

.cards .card {
    background: #db7805;
    display: flex;
    width: 46%;
    height: 200px;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 5px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.6);
}

.cards .card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid #fff;
    border-radius: 50%;
    display: block;
}

.cards .card>.contenido-texto-card {
    width: 60%;
    color: #fff;
}

.cards .card>.contenido-texto-card p {
    font-weight: 300;
    padding-top: 5px;
}

.cards .card img:hover {
    transform: scale(1.3);
}

/* ------------------------ */

.about-services {
    background: #f2f2f2;
    padding-bottom: 40px;
    margin-top: 40px;

}

.servicio-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.servicio-ind {
    width: 28%;
    text-align: center;
}

.servicio-ind img {
    width: 90%;
}

.servicio-ind h3 {
    margin: 10px 0;
}

.servicio-ind p {
    font-weight: 300;
    text-align: justify;
}

.about-services2 {
    background: #000000;
    height: 10px;
}




/* botnnnn  ver smas serviciossssssssssssssssssssss*/
.about-services-btn {
    background: #f2f2f2;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.boton-mas-servicios {
    background-color: #d35b0b;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0px 3px 3px rgba(223, 127, 2, 0.25);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    margin-top: 20px;
}

.about-services-btn .boton-mas-servicios:hover {
    background-color: black;
    color: #e28b07e0;
}

/* --------------------NUESTROS SERVICIOS------------------------------------------ */
.servicio-ind {
    flex-basis: calc(50% - 40px);
    /* Ajusta el ancho de los elementos en pantallas pequeñas */
    margin: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.servicio-ind img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.servicio-ind h3 {
    font-size: 1.5rem;
    margin: 10px 0;
    color: #333333;
}

.servicio-ind p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.5;
    margin: 0;
    text-align: justify;
}

.servicio-ind:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

/* --------------------------------------------------------------------estilos para pie de pagina-----------------------------------------------------------------------------------------*/
footer {
    background: #000000;
    padding: 60px 0 30px 0;
    overflow: hidden;

}

.contenedor-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
    margin-top: 100px;
}

.content-foo {
    text-align: center;
    flex-basis: calc(10% - 5px);
    margin: 10px;

}

.content-foo h4 {
    color: #fff;
    border-bottom: 3px solid #d36220;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.content-foo p {
    color: #ccc;
    margin: 0;
}

.titulo-final {
    text-align: center;
    font-size: 24px;
    margin: 20px 0 0 0;
    color: #9e9797;
}

/* --------------------------------------------------------------------codigo para celulares-----------------------------------------------------------------------------------------*/

@media screen and (max-width: 900px) {

    /* Header */
    header {
        background-position: center;
    }

    /* About us */
    .contenedor-sobre-nosotros {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .sobre-nosotros .contenido-textos {
        width: 90%;

    }

    .logo-container {
        text-align: center;
    }

    .logo-container img {
        max-width: 350px;
        /* Ajusta el tamaño máximo del logo */
        margin-bottom: 30px;
    }

    .imagen-about-us {
        width: 90%;
    }

    /* Galeria */
    .imagen-port {
        width: 44%;
    }

    /* Clients */
    .cards {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .cards .card {
        width: 90%;
    }

    .cards .card:first-child {
        margin-bottom: 30px;
    }

    /* Services */
    .servicio-cont {
        justify-content: center;
        flex-direction: column;
    }

    .servicio-ind {
        width: 100%;
        text-align: center;
    }

    .servicio-ind:nth-child(1),
    .servicio-ind:nth-child(2) {
        margin-bottom: 60px;
    }

    .servicio-ind img {
        width: 90%;
    }

    .about-services {
        width: 100%;
        padding-bottom: 40px;
        margin-top: 40px;
    }

    .about-services2 {
        width: 100%;

    }
}

/* Small devices */
@media (max-width: 768px) {
    .logo-container img {
        max-width: 80%;
    }
}


/* Estilos para pantallas pequeñas */
@media (max-width: 768px) {
    header {
        width: 100%;
        height: 600px;
        background: #bc4e9c;
        background: -webkit-linear-gradient(to right, hsla(340, 95%, 50%, 0.459), hsla(317, 45%, 52%, 0.664)), url(../img/imgIndex/IMG-20230810-WA0021.jpg);
        background: linear-gradient(to right, hsla(340, 95%, 50%, 0.459), hsla(66, 45%, 52%, 0.664)), url(../img/imgIndex/IMG-20230810-WA0021.jpg);
        background-size: cover;
        background-attachment: fixed;
        position: relative;
    }

    .textos-header h1 {
        font-size: 40px;
        color: #ffffff;
    }

    .textos-header h2 {
        font-size: 25px;
        color: #ffffff;
        margin-top: 20px;
    }

    .menu-icon {
        display: flex;
        /* Mostrar el ícono de menú */
    }

    .cosita {
        display: none;
        /* Ocultar la lista de enlaces */
        flex-direction: column;
        position: absolute;
        top: 50px;
        left: 0px;
        background-color: rgba(0, 0, 0, 0.8);
        width: 100%;
        text-align: center;

    }

    .cosita.show {
        display: flex;
        /* Mostrar la lista de enlaces cuando el menú está activo */
    }

    .cosita a {
        margin: 10px 0;
        font-size: 18px;
        /* Tamaño de fuente para los enlaces */
        color: #fff;
        /* Color de fuente para los enlaces */
        text-decoration: none;
    }



    /*amburgueza*/
    nav {
        background-color: #0f0f0f;
        padding-left: 40px;
        padding-right: 40px;
    }

    nav>ul>li>ul>li>a {
        display: block;
        padding: 10px 20px;
        color: #333;
        text-decoration: none;
        transition: background-color 0.3s ease;
        /* Transición suave del color de fondo */
    }

    /* Cambio de color de fondo al pasar el cursor */
    nav>ul>li>ul>li>a:hover {
        background-color: #db7805;
        /* Color naranja al pasar el cursor */
        color: #fff;
        /* Cambiar el color del texto para mejor contraste */
    }

    .bar {
        background-color: #d36220;
    }

    .imagen-card {
        background-color: #ffffff;
        border-radius: 10px;
        padding: 10px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;

    }

    .imagen-card img {
        width: 100%;

    }


    .about-services-btn {
        background: #f2f2f2;
        padding-bottom: 10px;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contenedor-footer {
        justify-content: center;
        /* Cambia la justificación para que se alinee verticalmente */
    }

    .content-foo {
        flex-basis: 100%;
        /* Ocupa todo el ancho en pantallas pequeñas */
        text-align: center;
        flex-basis: calc(50% - 20px);
        margin: 10px;

    }
.titulo-final {
        text-align: center;
        font-size: 10px;
        margin: 20px 0 0 0;
        color: #9e9797;
    }
}

/* --------------------------------------------------------------------estilos para acerca de notros-------------------------*/
.nosotros {
    width: 100%;
    height: 800px;
    background: #bc4e9c;
    background: -webkit-linear-gradient(to right, hsla(36, 53%, 47%, 0.459), hsla(317, 45%, 52%, 0.664)), url(../img/imgNosotros/IMG-20230810-WA0029.jpg);
    background: linear-gradient(to right, hsla(51, 100%, 50%, 0.459), hsla(51, 94%, 19%, 0.459)), url(../img/imgNosotros/IMG-20230810-WA0029.jpg);
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.contenido-intro {
    line-height: 2;
}


.contenido-textos-titulo h3 span {
    margin-bottom: 10px;
    background: #c97e0e;
    color: #fff;
    border-radius: 20%;
    display: inline-block;
    text-align: center;
    width: 35px;
    height: 35px;
    padding: 2px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, .5);
    margin-right: 5px;
    margin-left: 100px;
}


.contenido-textos h3 span {
    background: #c97e0e;
    color: #fff;
    border-radius: 20%;
    display: inline-block;
    text-align: center;
    width: 30px;
    height: 30px;
    padding: 2px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, .5);
    margin-right: 5px;
    margin-top: 20px;
}


.contenido-textos p {
    padding: 0px 0px 30px 15px;
    font-weight: 300;
    text-align: justify;
    margin-top: 20px;

}

.lineat img {
    width: 100%;
}


/* -------------------------------------portafolio-------------------------------------------------------*/
.portafolios {
    width: 100%;
    height: 800px;
    background: #bc4e9c;
    background: -webkit-linear-gradient(to right, hsla(340, 95%, 50%, 0.459), hsla(317, 45%, 52%, 0.664)), url(../img/imgPortafolio/recuerdos2.jpg);
    background: linear-gradient(to right, hsla(340, 95%, 50%, 0.459), hsla(66, 45%, 52%, 0.664)), url(../img/imgPortafolio/recuerdos2.jpg);
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

/* carrucel*/

.carrucel {
    display: flex;
    justify-content: center;
    /* Centrar horizontalmente */
    align-items: center;
    /* Centrar verticalmente */


}

.wrapper {
    max-width: 1100px;
    width: 100%;
    position: relative;
    height: 500px;

}

.wrapper i {
    top: 35%;
    height: 50px;
    width: 50px;
    cursor: pointer;
    font-size: 1.25rem;
    position: absolute;
    text-align: center;
    line-height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
    transform: translateY(-50%);
    transition: transform 0.1s linear;
}

.wrapper i:active {
    transform: translateY(-50%) scale(0.85);
}

.wrapper i:first-child {
    left: -22px;
}

.wrapper i:last-child {
    right: -22px;
}

.wrapper .carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 12px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    border-radius: 8px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    height: 350px;
}

.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;
}

.carousel .card {
    scroll-snap-align: start;
    height: 342px;
    list-style: none;
    background: #fff;
    cursor: pointer;
    padding-bottom: 15px;
    flex-direction: column;
    border-radius: 8px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
}



.carousel .card .img {
    background: #8B53FF;
    height: 148px;
    width: 148px;
    border-radius: 50%;
}

.card .img img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
}

.carousel .card h2 {
    font-weight: 500;
    font-size: 1.56rem;
    margin: 30px 0 5px;
}

.carousel .card span {
    color: #6A6D78;
    font-size: 1.31rem;
}

/*carrucel version celulares*/
@media screen and (max-width: 900px) {
    .wrapper .carousel {
        grid-auto-columns: calc((100% / 2) - 9px);
    }
}

@media screen and (max-width: 600px) {
    .wrapper .carousel {
        grid-auto-columns: 100%;
    }
}

/* -------------------------------------SERVICIOS-------------------------------------------------------*/

.servicioss {
    width: 100%;
    height: 800px;
    background: #bc4e9c;
    background: -webkit-linear-gradient(to right, hsla(340, 95%, 50%, 0.459), hsla(317, 45%, 52%, 0.664)), url(../img/imgServicios/plano2.jpg);
    background: linear-gradient(to right, hsla(340, 95%, 50%, 0.459), hsla(66, 45%, 52%, 0.664)), url(../img/imgServicios/plano2.jpg);
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

/* Estilos del contenedor infoooooooooooooooooooooooooooooooooooooooooooooooooooooooo*/

.contenedor-info {
    padding: 60px 0;
    width: 90%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

.titulo-info {
    color: #642a73;
    font-size: 30px;
    text-align: center;
    margin-bottom: 60px;
}

/* Estilos del contenedor de servicios */
.servicio-cont-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Estilos de cada servicio individual */
.servicio-ind-ingo {
    width: calc(30% - 10px);
    /* Ajustamos el tamaño para que quepan 3 servicios en una fila */
    text-align: center;
    margin-bottom: 60px;

}

/* Estilos de la imagen del servicio */
.servicio-ind-ingo img {
    width: 100%;
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

/* Estilos del título del servicio */
.servicio-ind-ingo h3 {
    color: #642a73;
    font-size: 24px;
    margin-bottom: 10px;
}

/* Estilos del texto del servicio */
.servicio-ind-ingo p {
    font-size: 15px;
    color: #f1f1f1;
}

@media (max-width: 768px) {
    .servicio-ind-ingo {
        width: calc(50% - 10px);
        /* Ajustamos el tamaño para que quepan 2 servicios en una fila en dispositivos móviles */
    }

    .servicio-ind-ingo {
        width: 100%;
        /* Ocupa todo el ancho disponible en la pantalla */
    }

    .servicio-ind-ingo img {
        width: 100%;
        max-width: 150px;
        height: auto;
        display: block;
        margin: 0 auto 10px;
    }

    .contenedor-sobre-nosotros .imagen-about-us {
        width: 200px;
    }

    .servicio-ind-ingo h3 {
        font-size: 20px;
        /* Reducimos el tamaño del título */
    }

    .servicio-ind-ingo p {
        font-size: 14px;
        /* Reducimos el tamaño del texto */
    }
}

/* boton ver mas info */

.ver {
    display: inline-block;
    background-color: rgb(233, 79, 7);
    /* Color azul (#007bff) */
    padding: 10px 20px;
    /* Espaciado interno del botón */
    border-radius: 5px;
    /* Borde redondeado */
    text-decoration: none;
    /* Sin subrayado de enlace */
    font-size: 16px;
    /* Tamaño del texto */
    transition: background-color 0.3s ease;
    /* Efecto de transición al pasar el mouse */
}

/* Efecto al pasar el mouse sobre el botón */
.ver:hover {
    background-color: #000000;
    color: rgb(233, 79, 7);
    /* Cambio de color al pasar el mouse (#0056b3) */
}

/* Estilo del texto dentro del botón */
.ver p {
    margin: 0;
    /* Eliminar el margen del párrafo */
}

/* --------------------------------------------------------contactos.html-----------------------------------------------------------------------------------------*/
.contactos {
    background: #DA4453;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #F56217, #0B486B);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #F56217, #0B486B);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    height: auto;
    padding: 48px;
    width: 100%;
}

.container-con {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: auto;
    padding: 24px;
}

.container-con img {
    margin-top: 40px;
    display: block;
    height: 450px;
    object-fit: cover;
    animation: arriba 1s ease-in;
    margin-top: 20px;
    /* Ajusta el valor según tu preferencia */

}

.textos-conta {
    width: 90%;
    color: #fff;
    margin-top: 50px;
}

.textos-conta h1 {
    font-size: 80px;
    text-align: center;
    animation: moverDerecha 1s ease-in;

}

.textos-conta h2 {
    font-size: 30px;
    text-align: center;
    animation: moverIzquierda 1s ease-in;
}

.textos-conta a {
    display: inline-block;
    color: #fff;
    font-weight: 300;
    text-decoration: none;
    margin-top: 30px;
    border: 1px solid #fff;
    width: 150px;
    border-radius: 3px;
    text-align: center;
    padding: 10px 0;
    animation: arriba 1s ease-in;

}

.enlaces {
    position: fixed;
    display: flex;
    top: 0;
    background: #000;
    justify-content: space-around;
    align-items: center;
    height: 100vh;
    right: 0;
    flex-direction: column;
    width: 100%;
    transition: all 1s ease;
    background: #0B486B;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #F56217, #0B486B);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #F56217, #0B486B);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}


.uno {

    -webkit-clip-path: circle(0% at 0 0);
    clip-path: circle(0% at 0 0);

}

.dos {
    -webkit-clip-path: circle(150% at 0 0);
    clip-path: circle(150% at 0 0);

}

/* keyframes*/
@keyframes moverIzquierda {
    0% {
        opacity: 0;
        transform: translateX(-200px);
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}

@keyframes moverDerecha {
    0% {
        opacity: 0;
        transform: translateX(200px);
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}

@keyframes arriba {
    0% {
        opacity: 0;
        transform: translateY(200px);
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}

.formc h1 {
    text-align: center;
    margin: 10px 0;
    font-weight: 800;
}

form {
    width: 30%;
    background: #fff;
    padding: 10px 0;
    border-radius: 40px;
    box-shadow: 0 0 6px 0 rgba(255, 255, 255, 0.8);
}

.form {
    width: 100%;
    margin: auto;
}

form .grupo {
    position: relative;
    margin: 45px;
}

input,
textarea {
    background: none;
    color: #c6c6c6;
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--colorTextos);
    resize: none;
}

input:focus,
textarea:focus {
    outline: none;
    color: rgb(94, 93, 93);
}

input:focus~label,
input:valid~label,
textarea:focus~label,
textarea:valid~label {
    position: absolute;
    top: -14px;
    font-size: 12px;
    color: #2196F3;
}

label {
    color: var(--colorTextos);
    font-size: 16px;
    position: absolute;
    left: 5px;
    top: 10px;
    transition: 0.5s ease all;
    pointer-events: none;

}

input:focus~.barra::before,
textarea:focus~.barra::before {
    width: 100%;
}

.barra {
    position: relative;
    display: block;
    width: 100%;
    border-bottom: 2px solid black;
}

.barra::before {
    content: '';
    height: 2px;
    width: 0%;
    bottom: 0;
    position: absolute;
    background: linear-gradient(to right, #6A82FB, #FC5C7D);
    transition: 0.3s ease all;
    left: 0%;
}

.contact-button-con {
    background: #b34b06;
    display: block;
    width: 100px;
    height: 40px;
    border: none;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    margin: 10px auto;
    cursor: pointer;
}

.regre {
    text-decoration: none;
    color: black;
}

.regre:hover {
    text-decoration: none;
    color: #b34b06;
}

/* Estilos de las tarjetas de contacto */
.contact-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 40px 5%;
    margin-top: 200px;

}

.contact-card {
    flex: 0 1 300px;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    background-color: #4267B2;
    margin-left: 60px;
}

.contact-card img {
    width: 200px;
    max-width: 200px;
    height: 200px;
    margin-bottom: 15px;
    margin-left: 35px;
}

.contact-card h3 {
    font-size: 20px;
}

.contact-card p {
    font-size: 16px;
}

/* Estilos del botón de contacto */
.contact-button.con {
    display: block;
    margin-top: 20px;
    width: 200px;
    padding: 12px 24px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.2s;
}

.contact-button.con:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}


.boton-mas-servicios-c {
    background-color: #d35b0b;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0px 3px 3px rgba(223, 127, 2, 0.25);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    margin-top: 20px;
    width: 80%;
}

.boton-mas-servicios-c:hover {
    background-color: black;
    color: #e28b07e0;
}

.boton-env {
    background: -webkit-linear-gradient(to right, #F56217, #0B486B);
    background: linear-gradient(to right, #F56217, #0B486B);
    display: block;
    width: 150px;
    height: 30px;
    border: none;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    margin: 10px auto;
    cursor: pointer;
}

.boton-env:hover {
    transform: scale(1.0);
    background: -webkit-linear-gradient(to right, #050403, #000000);
    background: linear-gradient(to right, #F56217, #000000, #000000, #F56217);
}

.ww .wave {
    margin: 0;
    /* Ajusta la altura según tu preferencia */
}

@media screen and (max-width:1000px) {
    .ww .wave {
        margin-bottom: 250px;

        /* Ajusta la altura según tu preferencia */
    }

}

@media screen and (max-width:800px) {
    .ww .wave {
        margin-bottom: 220px;

        /* Ajusta la altura según tu preferencia */
    }

}

@media screen and (max-width:768px) {
    .ww .wave {
        margin-bottom: 200px;
    }

    .container-con img {
        display: block;
        height: 250px;
        object-fit: cover;
        animation: arriba 1s ease-in;

        /* Ajusta el valor según tu preferencia */

    }
}


/* Estilos para pantallas más pequeñas (móviles) */
@media (max-width: 768px) {

    .ww .wave {
        height: 10px;
        margin-bottom: 200px;
        /* Ajusta la altura según tu preferencia */
    }

    .container-con {
        flex-direction: column;
        /* Cambia a columna en dispositivos móviles */
        padding: 16px;
        /* Ajusta el padding según tu preferencia */

    }

    .container-con img {
        height: auto;
        margin-top: 0px;
        margin-bottom: 150px;
        /* Ajusta el valor según tu preferencia */
    }

    .textos-conta h1 {
        font-size: 36px;
        /* Ajusta el tamaño según tu preferencia */
    }

    .textos-conta h2 {
        font-size: 24px;
        /* Ajusta el tamaño según tu preferencia */
    }

    form {
        width: 90%;
        height: 55%;
        margin-bottom: 300px;
        /* Ocupa el ancho completo en dispositivos móviles */
    }

    .contact-cards {
        margin-top: 20px;
        margin-left: 80px;
        /* Ajusta el margen superior según tu preferencia */
    }

    .contact-card {
        flex: 0 1 calc(100% - 40px);
        /* Ocupa el ancho completo con márgenes */
        margin: 20px 0;
        margin-left: 0;
        /* Elimina el margen izquierdo */
    }

    .contact-card img {
        width: 150px;
        /* Ajusta el tamaño según tu preferencia */
        height: 150px;
        /* Ajusta el tamaño según tu preferencia */
    }

    .contact-card h3 {
        font-size: 18px;
        /* Ajusta el tamaño según tu preferencia */
    }

    .contact-card p {
        font-size: 14px;
        /* Ajusta el tamaño según tu preferencia */
    }

    .contact-button-con {
        width: 100%;
        /* Ocupa el ancho completo */
        font-size: 14px;
        /* Ajusta el tamaño según tu preferencia */
        margin: 10px 0;
        /* Ajusta el margen según tu preferencia */
    }

    .contact-button.con {
        width: 100%;
        /* Ocupa el ancho completo */
        font-size: 14px;
        /* Ajusta el tamaño según tu preferencia */
    }

    .boton-mas-servicios-c {
        width: 100%;
        /* Ocupa el ancho completo */
        font-size: 14px;
        /* Ajusta el tamaño según tu preferencia */
        margin-top: 10px;
        /* Ajusta el margen según tu preferencia */
    }
}
