/* Aplicar a todos los elementos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'KGRedHands';
    src: url('../lib/KGRedHands.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Neue';
    src: url('../lib/BebasNeue-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overscroll-behavior: none;
    /* Evita rebote al final del scroll */
}

.btn-idioma {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 20px;
    color: white;
    border-radius: 8px;
    background: #222;
    border: none;
    cursor: pointer;
    font-size: 14px;
    padding: 6px 12px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    border-radius: 6px;
    min-width: 80px;
    z-index: 1;
}

.dropdown-content button {
    color: white;
    background: transparent;
    border: none;
    padding: 8px 12px;
    text-align: left;
    cursor: pointer;
    width: 100%;
}

.dropdown-content button:hover {
    background: #444;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/*Estilos de una barra de navegacion*/
/* Estilos de boton hambuerguesa*/
.hamburger {
    --size: 40px;
    --line: 3px;
    --gap: 7px;
    --radius: 8px;
    width: var(--size);
    height: var(--size);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--gap);
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius);
    transition: background .2s ease;
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1001;
    /* siempre arriba */
}

.hamburger:hover,
.hamburger:focus-visible {
    background: rgba(0, 0, 0, .06);
    outline: none;
}

.hamburger span {
    display: block;
    width: 100%;
    height: var(--line);
    background: #111;
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease, width .25s ease;
    transform-origin: center;
}

/* Estado abierto (X) */
.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(calc(var(--gap) + var(--line))) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(calc(-1 * (var(--gap) + var(--line)))) rotate(-45deg);
}

/* Menú lateral oculto */
.nav2 {
    width: 250px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    position: fixed;
    top: 0;
    left: -250px;
    /* oculto a la izquierda */
    transition: left 0.3s ease;
    z-index: 1000;
}

.nav2.active {
    left: 0;
    /* aparece */
}

.nav2 .logo img {
    width: 120px;
    margin-bottom: 40px;
}

.nav2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.nav2 ul li {
    margin-bottom: 20px;
    text-align: center;
}

.nav2 ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.nav2 {
    visibility: hidden;
}

.hamburger {
    visibility: hidden;
}

/* Menu completo */
.nav {
    position: fixed;
    justify-content: center;
    align-items: center;
    top: 0;
    width: 100%;
    font-family: 'Arial', sans-serif;
    background-color: #33333372;
    padding: 10px 0;
    z-index: 1000;
    font-size: 0.8rem;
}

.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

/* Estilos para el primer contenedor*/
.contenedor1 {
    position: relative;
    min-height: 100vh;
    display: flex;
    overflow: hidden;
}

.img-centro {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 10%;
    height: auto;
    border-radius: 50%;
    border: 2px solid black;      /* contorno negro */
    background-color: black;      /* fondo negro detrás de la imagen */
    transition: transform 0.1s linear;
    object-fit: cover;            /* mantiene proporciones dentro del círculo */
    z-index: 10000;
}


.fondo-groryx {
    position: absolute;
    bottom: 50%;
    right: 0;
    background-size: cover;
    background-position: center;
   background-repeat: no-repeat;
    transform: translateY(50%);
    width: 40%;
    height: 100vh;
    border-top-left-radius: 80%;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}


.frase-inicio {
    position: absolute;
    margin-left: 100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    top: 42%;
    left: 30%;
    transform: translate(-50%, -50%) scale(1);
    width: 20%;
    gap: 10px;
    color: black;
}

.frase-inicio p {
    font-size: 3.5rem;
    font-weight: 700;
}

.palabra {
    opacity: 0;
    transform: translateY(50px);
    animation: subir 0.6s forwards;
}

.palabra1 {
    animation-delay: 0s;
}

.palabra2 {
    animation-delay: 0.3s;
}

.palabra3 {
    animation-delay: 0.6s;
}

.palabra4 {
    animation-delay: 0.9s;
}

.palabra5 {
    animation-delay: 1.2s;
}

.fila {
    display: flex;
    gap: 10px;
    border-radius: 20px;
}

@keyframes subir {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon {
    width: 3%;
    margin: 19px;
    transition: transform 0.3s ease;
}

.icon:hover {
    transform: scale(1.5);
}

.redes {
    width: 550px;
    margin-bottom: 30px;
    margin-left: 10px;
}

.seccion-3 {
    position: absolute;
    top: 70%;
    left: 29%;
    transform: translate(-50%, -50%);
    width: 15%;
}

.btn-principal {
    position: absolute;
    top: 85%;
    left: 39%;
    transform: translate(-50%, -50%);
    width: 17%;
    font-size: 0.8rem;
    text-align: center;
    padding: 15px 15px;
    height: auto;
    text-decoration: none;
    animation: palpitar 0.8s infinite ease-in-out;
    background-color: rgba(0, 0, 0, 0.914);
    color: white;
    border-radius: 30px;
}

.btn-principal:hover {
    color: black;
    background-color: rgb(255, 255, 255);
    border: 2px solid black;
    animation: none;
    box-shadow: 0 0 10px 3px rgba(68, 68, 68, 0.7);
}

@keyframes palpitar {
    0% {
        box-shadow: 0 0 0px 0px rgba(34, 34, 34, 0.9);
    }

    40% {
        box-shadow: 0 0 1px 3px rgba(68, 68, 68, 0.7);
    }

    70% {
        box-shadow: 0 0 7px 6px rgba(128, 128, 128, 0.5);
    }

    100% {
        box-shadow: 0 0 13px 10px rgba(255, 255, 255, 0.3);
    }
}


/* Estilos para el contenedor 2*/
.contenedor2 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(0, 0, 0);
    min-height: 100vh;
}

.logo-cont2 {
    position: fixed;
    top: 0;
    left: 10%;
    width: 2%;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease;
}


.textos-nosotros {
    margin-top: 200px;
    display: flex;
    gap: 200px;
    flex-wrap: wrap;

}

.mision {
    width: 100%;
    max-width: 400px;
    padding: 30px;
    text-align: center;
    color: rgb(255, 255, 255);
    position: relative;
    transition: transform 0.2s linear, opacity 0.2s linear;

}


.img-con2 {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgb(0, 0, 0);
}

.img-valores {
    position: absolute;
    top: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.titulo-c2 {
    font-size: 4rem;
    font-family: 'Neue', sans-serif;
}

/* ESTILOS PARA EL CONTENEDOR 3 */

.contenedor3 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* overflow: hidden;*/
}

.carrusel-wrapper {
    width: 80%;
    overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.carrusel-wrapper::-webkit-scrollbar {
    display: none;
}


.carrusel-con3 {
    display: flex;
    gap: 50px;
    padding: 20px;
}

.titulo-card3 {
    padding: 10px;
    font-size: 1rem;
    font-weight: 590;
    transition: opacity 0.5s ease-in-out;
}

.texto-card3 {
    font-size: 0.9rem;
    padding: 10px 10px;
    transition: opacity 0.5s ease-in-out;
}

.img-con3 {
    width: 55px;
    padding: 10px 10px;
}

.img-con3-b {
    width: 55px;
    padding: 10px 10px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.targeta3 {
    min-width: 280px;
    height: 390px;
    border-radius: 5px;
    border: 1px solid rgb(214, 214, 214);
    box-shadow: 0 0 5px 1px rgba(189, 189, 189, 0.7);
    text-align: center;
    transition: opacity 0.5s ease-in-out;
}

.logo-soluciones {
    position: absolute;
    width: 30%;
    border-radius: 50%;
    z-index: -1;
}

.img-soluciones {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20%;
    z-index: -1;
}

/* Cuando hago hover en la tarjeta */
.targeta3:hover {
    background-color: black;
}

/* Todos los hijos cambian cuando se hace hover en .targeta3 */
.targeta3:hover .texto-card3 {
    color: white;
}

.targeta3:hover .titulo-card3 {
    color: white;
}

.targeta3:hover .img-con3-b {
    opacity: 1;
}

/* Botones de navegación */
.btn-carrusel {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background-color: #ffffff00;
    color: rgb(0, 0, 0);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.btn-carrusel:hover {
    background: rgba(0, 0, 0, 0.8);
}

.btn-carrusel.prev {
    left: 20px;
}

.btn-carrusel.next {
    right: 20px;
}

.frase-soluciones {
    position: absolute;
    top: 10%;
    left: 8%;
    width: 50%;
    font-size: 2rem;
    font-weight: 100;
}


/*****EFECTOS DEL CONTENEDOR 4 ******/

.contenedor4 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
}


.contenedorSup {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Imagen de fondo fija */
    background-image: url('../img-prueba/campo.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /*hace que el fondo quede fijo */
    background-position: center;
}


/* Capa gris transparente encima */
.contenedorSup::before {
    content: "";
    /* crea el pseudo-elemento vacío y hace que se vea una capa gris*/
    position: absolute;
    inset: 0;
    /* ocupa todo el contenedor */
    background-color: rgba(0, 0, 0, 0.759);
    /* gris con transparencia */
}



@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        /* aumenta tamaño al 110% */
    }

    100% {
        transform: scale(1);
    }
}

.titulo-par {
    color: rgb(176, 23, 23);
    z-index: 1;
    position: absolute;
    top: 8%;
    font-size: 2.8rem;
    font-weight: 650;
}

.texto-socios {
    position: absolute;
    top: 15%;
    padding: 40px 40px;
    color: white;
    z-index: 1;
    text-align: center;
    width: 60%;
    border-radius: 60px;
    font-size: 0.8rem;
}

.contenedor-socios-tg {
    position: absolute;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    bottom: 20%;
    width: 100%;
    height: 500px;
    padding: 20px;
    z-index: 1;
    gap: 30px;
}


.tg-socio {
    width: 15%;
    height: auto;
    border-radius: 20px;
    background-color: transparent;
    transition: background-color 0.3s ease;
    overflow: hidden;

}

.titulo-socio {
    width: 80%;
    margin-top: 20px;
    margin-left: 25px;
    display: block;
    animation: pulse 3s infinite 1s;
}

.texto-tg-socios {
    width: 100%;
    color: white;
    padding: 20px 20px;
    text-align: justify;
    font-size: 0.7rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease, max-height 0.5s ease;
}

/* Al hacer hover sobre el contenedor */
.tg-socio:hover {
    background-color: #ffffff70;
}

/* Mostrar el texto en hover */
.tg-socio:hover .texto-tg-socios {
    opacity: 1;
    max-height: 500px;
    /* suficiente para mostrar el texto */
}












/* contenedor 6 */
.contenedor6 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgb(0, 0, 0);
    min-height: 100vh;
    overflow: hidden;
}


.beneficios {
    position: absolute;
    top: 15%;
    display: flex;
    width: 100%;
    height: 20%;
    color: white;
}

.beneficios-img {
    width: 370px;
    height: 370px;
    object-fit: cover;
    border-radius: 50%;

}

.hr1 {
    border: none;
    height: 4px;
    background-color: rgb(0, 0, 0);
    width: 70%;
}

.titulo-beneficios {
    font-size: 1.8rem;
}

.texto-beneficios {
    font-size: 0.8rem;
    width: 80%;
}

.soc {
    position: absolute;
    top: 60%;
    right: 0;
    display: flex;
    width: 100%;
    height: 20%;
    color: white;
    text-align: end;
}

.soc-img {
    position: absolute;
    right: 0;
    width: 310px;
    height: 310px;
    object-fit: cover;
    border-radius: 50%;
}

.hr2 {
    position: absolute;
    right: 330px;
    margin-top: 100px;
    border: none;
    height: 4px;
    background-color: rgb(0, 0, 0);
    width: 25%;
}

.texto-soc {
    position: absolute;
    margin-top: 120px;
    right: 330px;
    font-size: 0.8rem;
    width: 28%;
}

.primer-titulo {
    position: absolute;
    margin-top: 50px;
    right: 330px;
    font-size: 1.8rem;
}

/* Contenedor 5 */


.contenedor5 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    background-color: black;
    overflow: hidden;
}

.fondo-lineas {
    position: absolute;
    top: 20%;
    right: -240px;
    transform: rotate(140deg);
}

.form-1 {
    position: absolute;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 0px;
    top: 10%;
    padding: 50px 50px;
    color: white;
    left: 10%;
    width: 28%;
    height: 580px;
    border-radius: 10px;
    background-color: rgba(83, 83, 83, 0.188);
}



.campo {
    margin-top: 0px;
    font-size: 0.7rem;
}

.btn-xs {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 0.2rem;
}

.cancelar {
    background-color: #ff0000;
    border-radius: 5px;
    border: none;
    color: white;
}

.enviar {
    background-color: #2560f6;
    border-radius: 5px;
    border: none;
    color: white;
}

.btn-form {
    width: 100%;
    padding: 30px;
    display: flex;
    /* activa flexbox */
    justify-content: center;
    /* centra los botones */
    gap: 50%;
    /* separa los botones */
}

.contactanos {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
}

.titulo-ubicacion {
    font-family: 'Gunken', sans-serif;
    color: hsl(0, 59%, 41%);
    font-size: 1.5rem;
    margin-left: 40px;

}

.texto-ubicacion {
    width: 100%;
    margin-left: 30px;
}

.caja-direccion {
    position: absolute;
    right: 28%;
    top: 10%;
    width: 30%;
    height: 30%;
    z-index: 1;
}

.linea-contacto {
    display: flex;
    /* Activa flexbox */
    align-items: center;
    /* Centra verticalmente icono y texto */
    gap: 10px;
    /* Espacio entre icono y texto */
    font-size: 0.9rem;
    color: white;
    margin: 20px 0;
    /* Separación entre líneas */
}


.icono {
    width: 20px;
    /* Tamaño fijo en píxeles */
    height: 20px;
    flex-shrink: 0;
    /* Evita que el icono se deforme */
}

.ubicacion {
    z-index: 1;
    position: absolute;
    right: 5%;
    top: 40%;
}

footer {
    margin-top: auto;
    /* Empuja el footer al final */
    color: #fff;
    text-align: center;
    padding: 15px;
    z-index: 1;
}

.mapa {
    width: 520px;
    height: 220px;

}

/* Para celulares */

@media (max-width: 537px) {

    /*Estilos del nav*/
    .nav2 {
        visibility: visible;
    }

    .hamburger {
        visibility: visible;
    }

    .nav {
        visibility: hidden;
    }

    /*Estilos del segundo contenedor 1*/

    .img-centro {
        top: 15px;
        left: 60px;
    }
    .fondo-groryx {
        width: 70%;
        height: 45%;
        bottom: 80%;
        right: -90px;
        border-top-left-radius: 100%;
        border-bottom-left-radius: 100%;
    }

    .frase-inicio {
        margin-left: 100px;
        top: 30%;
        left: 5%;
        background-color: rgba(255, 255, 255, 0.707);
        width: 50%;
    }

        
    .frase-inicio p {
        font-size: 1.3rem;
    }

    .seccion-3 {
        top: 65%;
        left: 10%;
    }

    .icon {
        width: 2.5%;
        margin: 10px;
    }

    .btn-principal {
        top: 75%;
        left: 32%;
        width: 37%;
        font-size: 0.5rem;
        padding: 8px 8px;
    }

    /*Estilos del contenedor 2*/

    .hamburger:hover,
    .hamburger:focus-visible {
        background: rgba(255, 255, 255, 0.4);
        outline: none;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: var(--line);
        background: #616161;
        border-radius: 2px;
        transition: transform .25s ease, opacity .2s ease, width .25s ease;
        transform-origin: center;
    }

    .textos-nosotros {
        margin-top: 350px;
        gap: 0px;
    }


    .img-con2 {
        width: 270px;
        height: 270px;
    }

    .img-valores {
        top: 5%;
    }

    .titulo-c2 {
        font-size: 3rem;
    }

    /* Estilos para el contenedor 3 */
    .frase-soluciones {
        font-size: 1rem;
    }

    .targeta3 {
        min-width: 200px;
        height: 300px;
    }

    .texto-card3 {
        font-size: 0.6rem;
    }

    .carrusel-wrapper {
        width: 390px;
    }

    .carrusel-con3 {
        gap: 40px;
    }

    .btn-carrusel.prev {
        left: 0px;
    }

    .btn-carrusel.next {
        right: 0px;
    }

    /* contenedor 6 */


    .beneficios {
        top: 10%;
        width: 100%;
        height: 20%;
    }

    .beneficios-img {
        width: 120px;
        height: 120px;
    }

    .hr1 {
        margin-left: 15px;
        width: 50%;
    }

    .titulo-beneficios {
        font-size: 1rem;
    }

    .texto-beneficios {
        font-size: 0.5rem;
        width: 90%;
    }

    .soc {
        top: 60%;
        width: 100%;
        height: 20%;
    }

    .soc-img {
        right: 0;
        width: 120px;
        height: 120px;
    }

    .hr2 {
        right: 130px;
        margin-top: 40px;
        width: 30%;
    }

    .texto-soc {
        margin-top: 50px;
        right: 130px;
        font-size: 0.5rem;
        width: 40%;
    }

    .primer-titulo {
        margin-top: 10px;
        right: 130px;
        font-size: 1rem;
    }

    /* Estilos contenedor4*/

    .texto-socios {
        top: 8%;
        width: 100%;
        font-size: 0.5rem;
    }

    .titulo-par {
        top: 8%;
        font-size: 1.7rem;
    }

    .texto-tg-socios {
        font-size: 0.5rem;
    }

    .titulo-socio {
        width: 50%;
    }

    .contenedor-socios-tg {
        display: grid;
        /* Cambiamos a grid */
        grid-template-columns: repeat(2, 1fr);

        top: 25%;
        bottom: 0;
    }

    .tg-socio {
        width: 100%;

    }

    /* Estilos contenedor 5 */
    footer {
        font-size: 0.5rem;
    }

    .form-1 {
        top: 9%;
        padding: 10px 10px;
        width: 80%;
        height: 400px;
    }

    .tamCampo {
        width: 100px;
        height: 18px;
        font-size: 0.9rem;
        padding: 5px 10px;
    }

    .tamCampo::placeholder {
        font-size: 9px;
        padding: 10px 10px;
        font-style: italic;
    }

    .contactanos {
        margin-top: 0;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .labels {
        font-size: 0.5rem;
    }

    .btn-xs {
        padding: 0.12rem 0.5rem;
        font-size: 0.50rem;
    }

    .btn-form {
        padding: 10px;
    }

    .campo {
        margin-top: 5px;
    }

    .titulo-ubicacion {
        font-size: 0.6rem;
    }


    .linea-contacto {
        font-size: 0.4rem;
        gap: 3px;
        margin: 5px 0;
    }

    .ubicacion {
        right: 10px;
        top: 75%;
    }

    .mapa {
        width: 110px;
        height: 110px;

    }

    .caja-direccion {
        position: absolute;
        left: 0;
        top: 73%;
        width: 50%;
    }


}

/* para tablet */

@media (min-width: 481px) and (max-width: 1200px) {

    /*Estilos del contenedor 1*/
    .fondo-groryx {
        width: 70%;
        height: 100%;
        bottom: 50%;
        right: -90px;
        border-top-left-radius: 100%;
        border-bottom-left-radius: 100%;
    }

    .frase-inicio {
        margin-left: 100px;
        top: 50%;
        left: 5%;
        background-color: rgba(255, 255, 255, 0.707);
        width: 50%;
    }

    .frase-inicio p {
        font-size: 1.9rem;
    }

    .btn-principal {
        top: 87%;
        left: 19%;
        width: 20%;
        font-size: 0.7rem;
        padding: 8px 8px;
    }

    .seccion-3 {
        top: 68%;
        left: 5%;
    }

    .icon {
        width: 2.8%;
    }

    /*Estilos del contenedor 2*/
    .hamburger:hover,
    .hamburger:focus-visible {
        background: rgba(255, 255, 255, 0.4);
        outline: none;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: var(--line);
        background: #c6c6c6;
        border-radius: 2px;
        transition: transform .25s ease, opacity .2s ease, width .25s ease;
        transform-origin: center;
    }

    .textos-nosotros {
        margin-top: 250px;
        gap: 0;
    }


    .img-con2 {
        width: 270px;
        height: 270px;
    }

    .img-valores {
        top: 5%;
    }

    .titulo-c2 {
        font-size: 3rem;
    }

    /*   Estilos para el contenedor 3 */


    .targeta3 {
        min-width: 220px;
        height: 290px;
    }

    .texto-card3 {
        font-size: 0.7rem;
    }

    .carrusel-wrapper {
        width: 700px;
    }

    .frase-soluciones {
        font-size: 1.5rem;
    }

    /* contenedor 6 */


    .beneficios {
        top: 10%;
        width: 100%;
        height: 20%;
    }

    .beneficios-img {
        width: 250px;
        height: 250px;
    }

    .hr1 {
        width: 50%;
    }

    .titulo-beneficios {
        font-size: 1.5rem;
    }

    .texto-beneficios {
        font-size: 0.7rem;
        width: 80%;
    }

    .soc {
        top: 60%;
        width: 100%;
        height: 20%;
    }

    .soc-img {
        width: 250px;
        height: 250px;
    }

    .hr2 {
        right: 280px;
        margin-top: 40px;
        width: 30%;
    }

    .texto-soc {
        margin-top: 60px;
        right: 280px;
        font-size: 0.7rem;
        width: 40%;
    }

    .primer-titulo {
        margin-top: 0;
        right: 280px;
        font-size: 1.5rem;
    }

    /* Estilos contenedor4*/

    .texto-socios {
        top: 14%;
        width: 90%;
        font-size: 0.7rem;
    }

    .titulo-par {
        top: 8%;
        font-size: 2.3rem;
    }

    .texto-tg-socios {
        font-size: 0.5rem;
    }

    .titulo-socio {
        width: 50%;
    }

    /* Estilos contenedor 5 */
    footer {
        font-size: 0.7rem;
    }

    .form-1 {
        top: 8%;
        padding: 20px 20px;
        width: 28%;
        height: 470px;
    }

    .tamCampo {
        width: 200px;
        height: 25px;
        font-size: 0.9rem;
        padding: 5px 10px;
    }

    .tamCampo::placeholder {
        font-size: 10px;
        padding: 10px 10px;
        font-style: italic;
    }

    .contactanos {
        margin-top: 1px;
        font-size: 1rem;
        font-weight: 600;
    }

    .labels {
        font-size: 0.7rem;
    }

    .btn-xs {
        padding: 0.12rem 0.5rem;
        font-size: 0.50rem;
    }

    .btn-form {
        padding: 10px;
    }

    .campo {
        margin-top: 5px;
    }

    .titulo-ubicacion {
        font-size: 1.1rem;
    }

    .linea-contacto {
        font-size: 0.7rem;
    }

    .ubicacion {
        right: 10%;
        top: 40%;
    }

    .mapa {
        width: 320px;
    
    }

}

.prueba{
    color:#0077ef;
    color:#f5e400;
    color:#ff6200;
    color:#3864b0;
    color:#ffb700;
    color:#2fdc8e;

}
