html,body{
    background-color: #fff;
    font-family: 'Source Sans Pro',sans-serif;
    overflow-x: hidden !important;
    margin: 0px !important;
    padding: 0px !important;
}

*{
    text-decoration: none !important;
}

/* ------------------------------------------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------------------------------------------ */

.nav{
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px 0 25px;
    background-color: #fff;
    box-shadow: 0 19px 38px rgba(0,0,0,0.10);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.nav .links a{
    margin-right: 25px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    transition: color 0.3s ease;
}

.nav .links a:hover{
    color: #e0501b; /* Cambia esto al color que prefieras */
}

.nav .links .mainlink{
    color: #e0501b;
}

.nav h4{
    font-size: 22px;
    font-weight: bold;
    margin-left: 25px;
}

/* ------------------------------------------------------------------------------------------------------------ */
/* LANDING CSS documentado para que no se me vaya a olvidar xd */

.landing {
    background-image: url(img/Gal1.png);  /* Se establece la imagen de fondo para el contenedor principal*/
    background-size: cover; /* Ajusta la imagen de fondo para que cubra todo el contenedor, adaptándose a su tamaño */
    display: flex; /* Utiliza Flexbox para la disposición de los hijos de este contenedor */
    flex-direction: row; /* Define la dirección principal de los elementos hijos como una fila (horizontalmente) */
    justify-content: flex-end; /* Alinea el contenido hijo hacia el extremo derecho del contenedor */
    align-items: center; /* Centra verticalmente los elementos hijos en el contenedor */
    padding: 0 10vw 0 10vw; /* Añade un padding (relleno) a los lados del contenedor. `10vw` es el 10% del ancho de la ventana del navegador */
    height: 100vh; /* Se establece la altura del contenedor al 100% de la altura de la ventana del navegador */
}

/* Estilos para el texto */
.landingText {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    text-align: center; 
}

/* Estilos para la imagen de galopin */
.imglanding {
    max-width: 100%;
    margin-bottom: 20px;
}

/* Estilos para el texto principal */
.landingText h1 {
    font-size: 2vw;
    margin: 0;
    padding: 20px;
}

/* Estilos para el boton */
.landingText .btn {
    display: inline-block;
    width: auto; /* Cambiado a auto para ajustar el ancho al contenido */
    margin-top: 30px;
    padding: 10px 20px; /* padding horizontal reducido */
    background-color: #09b149; /* verde */
    border: 2px solid #09b149; /* borde verde */
    border-radius: 45px;
    text-align: center;
    transition: background-color 0.3s ease, border 0.3s ease; /* transición suave */
}

.landingText .btn a {
    font-size: 1.4vw; /* tamaño de la fuente aumentado */
    color: #fff; /* letras blancas */
    transition: color 0.3s ease; /* transición suave */
}

.landingText .btn:hover {
    background-color: #fff; /* blanco */
    border-color: #09b149; /* borde verde */
}

.landingText .btn:hover a {
    color: #09b149; /* letras verdes */
}

/* ------------------------------------------------------------------------------------------------------------ */

/* ABOUT CSS */

.contenedor-acercade{
    padding-top: 60px;
}

.about{
    padding: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    height: 80vh; 

}

.aboutTextL{
    position: relative;
    padding: 0 50px;
    height: inherit;
}

.aboutTextL h1{
    position: relative;
    left: 110px;
}

.aboutTextL img{
    width: 20vw;
    position: absolute;
    top: 50px;
}

.aboutTextR{
    width: 50%;
}

.IconA {
    padding-top: 80px;
}

.aboutdescription {
    text-align: justify;
}

.color-black {
    color: black;
}

.color-blue {
    color: #2f8be0;
}

.color-red {
    color: red;
}

.color-green {
    color: green;
}

/* ------------------------------------------------------------------------------------------------------------ */

/* INFO_SECTION CSS */

.contenedor-productos{
    padding-top: 140px;
}

.infoSection{
    height: 80vh;
}

.infoHeader{
    text-align: center;
    margin-bottom: 40px;
}

.infoCards{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 40px 0 40px 0;
}

.infoCards .card{
    position: relative;
    height: 360px;
    width: 350px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(0,0,0,0.09), 0 10px 10px rgba(0,0,0,0.09)
}

.infoCards .one .cardoneImg{
    width: 200px;
    position: absolute;
    top: -50px;
    right: -50px;
}
.infoCards .two .cardtwoImg{
    width: 200px;
    position: absolute;
    top: -50px;
    right: -50px;
}
.infoCards .three .cardthreeImg{
    width: 200px;
    position: absolute;
    top: -50px;
    right: -50px;
}
.infoCards .four .cardfourImg{
    width: 200px;
    position: absolute;
    top: -50px;
    right: -50px;
}

/* Imagenes de fondo de las tarjetas */
.cardbgone{
    height: 150px;
    background-image: url(img/juegosinf.jpg);
    background-size: cover;
}
.cardbgtwo{
    height: 150px;
    background-image: url(img/ejercitadores.jpg);
    background-size: cover;
}
.cardbgthree{
    height: 150px;
    background-image: url(img/mobiliario.jpg);
    background-size: cover;
}
.cardbgfour{
    height: 150px;
    background-image: url(img/galopin.jpg);
    background-size: cover;
}
/* Se termina el area de imagenes de fondo de las tarjetas */

.cardContent{
    padding: 0 20px;
}

.cardContent h2{
    font-weight: 600;
}

.cardContent p{
    line-height: 30px;
    opacity: 0.6
}


.cardContent .cardBtn{
    position: absolute;
    right: 20px;
    padding: 10px;
    background-color: #ededed;
    width: 25px;
    height: 20px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all ease-in-out 0.2s;
}

.cardContent .cardBtn:hover{
  background-color: #e0501b;
}

.cardContent .cardBtn .cardIcon{
    position: relative;
    top:0px;
    left:0px;
    width: 16px;
}

/* ------------------------------------------------------------------------------------------------------------ */
/* contacto */
.contenedor-contacto{
    padding-top: 60px;
}

.contact{
    height: 100vh;
    background-color: green;
    display: flex;
    flex-direction: row;
    padding: 50px;
    justify-content: space-evenly;
    align-items: center;
    padding: 0 20vw 0 20vw; 

}

.contactText h1{
    font-size: 3vw;
    color: #000;
    font-weight: 600;
}

.contactText img{
    width: 10vw;
    margin-right: 20px;
}

.contactImg img{
    width: 20vw;
}

.contact-us {
    background-image: url(/images/form-shapes-mobile.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    flex: 1; /* Esto permite que el formulario ocupe la mitad del espacio */
    order: 2; /* Coloca el formulario a la derecha */
}
  
.contact-legend {
    padding-left: 24px;
    padding-right: 24px;
}
  
.contact-title {
    padding-top: 1px;
    font: normal bold 40px "Poppins", sans-serif;
    text-align: center;
    color: #fff;
}


  
.contact-description {
    margin-top: 12px;
    font: normal 400 20px "Poppins", sans-serif;
    color: #ebebff;
    line-height: 28px;
    text-align: center;
    transition: 1s;
}
  
.contact-description:hover {
    transform: translate(5px);
}
  
.form {
    display: flex;
    flex-direction: column;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 45px;
    margin-top: 40px;
}
  
.form-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
  
.form-list li {
    display: flex;
    flex-direction: column;
}
  
.form-list input,

    textarea {
        background: #fff;
        border: 1px solid #cfd8dc;
        border-radius: 8px;
    }
  
    .form-list input {
        height: 48px;
        padding-left: 16px;
        font: normal 400 17px "Poppins", sans-serif;
        color: #172b4d;
    }
  
    .form-list textarea {
        height: 170px;
        padding-top: 15px;
        padding-left: 16px;
        font: normal 400 17px "Poppins", sans-serif;
        color: #172b4d;
    }
  
.form-list input:focus,
    textarea:focus {
        outline-color: #6070ff;
    }

    .negocio {
        background: #fff;
        border: 1px solid #cfd8dc;
        border-radius: 8px;
        height: 48px;
        padding-left: 16px;
        font: normal 400 17px "Poppins", sans-serif;
        color: #172b4d;
    }

    .pais {
        background: #fff;
        border: 1px solid #cfd8dc;
        border-radius: 8px;
        height: 48px;
        padding-left: 16px;
        font: normal 400 17px "Poppins", sans-serif;
        color: #172b4d;
    }

    .estado {
        background: #fff;
        border: 1px solid #cfd8dc;
        border-radius: 8px;
        height: 48px;
        padding-left: 16px;
        font: normal 400 17px "Poppins", sans-serif;
        color: #172b4d;
    }
  
.form-btn {
    align-self: flex-start;
  }
  
  .error-message {
    font: normal 400 20px "Poppins", sans-serif;
    color: red;
    display: none;
  }
  
  .error-message.active {
    display: contents;
  }

  .form-btn {
    background: #6070ff;
    border-radius: 25px; /* Bordes redondeados */
    height: 48px;
    width: 100%;
    font: normal 600 17px "Poppins", sans-serif;
    color: #fff;
    transition: background-color 0.5s ease; /* Transición de color de fondo */
  }
  
  .form-btn:hover {
    background: #0000ff; /* Cambia a azul cuando se pasa el cursor */
  }

  .contacto { /* Sección de contacto que vaya del lado derecho del formulario*/
    background-image: url(/images/form-shapes-mobile.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    flex: 1; /* Esto permite que el texto ocupe la mitad del espacio */
    order: 1; /* Coloca el texto a la izquierda */
    color: #fff; /* Texto blanco */
  }

  .contactanos {
    padding-top: 1px;
    font: normal bold 40px "Poppins", sans-serif;
    text-align: left;
    color: #fff;
}
  
  .icono {
    display: inline-block;
    margin-right: 10px;
  }
  
  .icono img {
    width: 30px; /* Ajusta el tamaño del icono según sea necesario */
    height: 30px; /* Ajusta el tamaño del icono según sea necesario */
    vertical-align: middle; /* Añade esta línea */
    filter: invert(1); /* Hace que los iconos sean blancos */
  }

  
/* ------------------------------------------------------------------------------------------------------------ */
/* Estilos para la sección del botón */
.footer-bottom {
    background-color: rgb(230, 230, 230);
    height: 15vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Añadido para centrar verticalmente */
    padding-bottom: 20px;
    width: 100%; /* Añadido para asegurar que la sección ocupe todo el ancho */
    text-align: center; /* Añadido para centrar el texto */
}

.footer-bottom a{
    margin: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}
.footer-bottomlinks .mainlink{
    color: #e0501b;
}

/* RESPONSIVE */


@media only screen and (max-width: 600px){

    .nav{
        flex-direction: column;
        justify-content: space-around;
        padding: 20px;
        height: auto;
        overflow-y: hidden;
    }
    
    .nav h4{
        font-size: 6vw;
        margin-top: 10px;
        margin-bottom: 14px;
    }
    
    .nav .links a{
        margin-right: 25px;
        font-size: 12px;
        font-weight: 600;
    }
    
    
    /* LANDING PAGE */
    
    .landing{
        flex-direction: column-reverse;
        height: 750px;
        align-items: center;
        justify-content: center;
        text-align: center
    }
    
    .landingText h1{
        font-size: 6vw;
        margin: 0 !important;
    }
    
    .landingText h3{
        font-size: 16px;
    }
    
    .landingText .btn{
        margin: 0 auto;
    }
    
    .landingText .btn a{
        font-size: 3vw;
    }
    
    .landingImage img{
        width: 52vw;
        margin-bottom: 20px;
    }
    
    
    /* ABOUT */
    
    .about{
        height: auto;
        padding: 0px;
        display: flex;
      
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .aboutText{
        padding: 0 50px;
        height: 100px;
    }
    
    .aboutText h1{
        left: 40px;
        font-size: 5vw;
    }
    
    .aboutText img{
        width: 16vw;
        top: 10px;
        left: -30px;
    }
    
    .aboutList{
        width: 75%;
    }
    
    ol li{
        font-size: 26px;
    }
    
    li p{
        font-size: 14px;
    }
    
    .infoSection{
        height: auto;
    }
    
    .infoHeader{
        text-align: center;
        margin: 40px 0;
    }
    
    .infoCards{
        display: flex;
        flex-direction: column;
        padding: 50px;
        justify-content: center;
        align-items: center;
        text-align: center
    }
    
    .infoCards .card{
        margin-bottom: 60px;
    }
    
    .banner{
        height: auto;
        flex-direction: column-reverse;
        padding: 50px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .banner h1{
        font-size: 6vw;
    }
    
    .bannerInnerText{
        font-size: 3vw !important;
    }
    
    .bannerText img{
        width: 20vw;
    }
    
    .bannerImg img{
        width: 26vw;
    }
    
    .footer{
        padding-bottom: 40px;
    }
    }

/* CONFIGURACION PARA LA MACBOOK AIR DE 13 PULGADAS */

@media only screen and (max-width: 1440px){
    
    /* LANDING PAGE */
  
    .infoSection{
        height: auto;
    }
    
    .infoHeader{
        text-align: center;
        margin: 40px 0;
    }
    
    .infoCards{
        display: flex;
        flex-direction: column;
        padding: 50px;
        justify-content: center;
        align-items: center;
        text-align: center
    }
    
    .infoCards .card{
        margin-bottom: 60px;
    }
    
    .banner{
        height: auto;
        flex-direction: column-reverse;
        padding: 50px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .banner h1{
        font-size: 6vw;
    }
    
    .bannerInnerText{
        font-size: 3vw !important;
    }
    
    .bannerText img{
        width: 20vw;
    }
    
    .bannerImg img{
        width: 26vw;
    }
    
    .footer{
        padding-bottom: 40px;
    }
    }