@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&display=swap');

* {
	padding: 0;
	margin: 0;
	font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}

a{
    text-decoration: none;
    display: flex;
    justify-content: center;
}

.main-container{
    display: grid;
    grid-template-columns: 100%;
    justify-items: center;
    justify-content: center;
    align-items: center;
    padding-top: 95px;
}

.geco-logo{
    width: 65%;
    max-width: 302px;
}

.geco-background{
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}



.paises-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.paises-container div{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 316px;
}

.pais-container{
    display: flex;
    flex-direction: row !important;
    width: 70%;
    max-width: 500px;
    height: 35px;
    border-radius: 5rem;
    padding: 0 1rem;
    background: linear-gradient(to right, transparent, #8dd9e1);
    margin: .2rem 0;
}

.pais-container img{
    width: 18%;
    margin-left: 1rem;
}

.pais{
    font-size: 1.2rem;
    color: white;
    padding-left: 1.5rem;
}

/* MEDIA QUERIES */

@media screen and (min-width: 1151px){
    .main-container{
        grid-template-columns: 400px 550px;
        margin-top: auto;
        margin-bottom: auto;
        padding-top: 120px;
    }

    .paises-container{
        display: grid;
        grid-template-columns: 250px 250px;
        justify-items: center;
    }

    .pais-container{
        width: 100%;
        height: 40px;
    }

    .pais-container img{
        width: 15%;
    }

    .pais{
        font-size: 1.2rem;
    }

    .geco-logo{
        width: 100%;
        max-width: 350px;
        margin-top: 50px;
    }
}

@media screen and (max-width: 311px){
    .pais-container{
        width: 80%;
    }
}

@media screen and (max-width: 290px){
    .main-container{
        padding-top: 40px;
    }
}

@media screen and (max-height: 701px) {
    .geco-background{
        height: 130vh;
    }
}


/* CARROUSEL BANNER */

.banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    /* Color del texto */
    padding-left: 15%;
    padding-right: 15%;
    padding-bottom: 10%;
    padding-top: 10%;
  }
  
  /* 
    section.banner {
      height: 85vh;
    } */
  
  .content {
    max-width: 50%;
    /* Ajusta el ancho del contenido según tus necesidades */
    z-index: 2;
  }
  
  .image {
    max-width: 50%;
    /* Ajusta el ancho de la imagen según tus necesidades */
    position: relative;
    z-index: 2;
  }
  
  .title {
    color: white;
    font-size: 3rem;
    font-weight: bold;
  }
  
  .paragraph-title {
    color: white;
    font-size: 18px;
    line-height: inherit;
    margin: 0;
  }
  
  .botones-banner {
    margin-top: 2rem;
  }
  
  .boton-banner {
    background-color: orange;
    color: white;
    padding: 10px 15px;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    margin-right: 20px;
    cursor: pointer;
  }
  
  .violeta {
    background-color: #8772C0;
  }
  
  .azul {
    background-color: #3593E7;
  }
  
  .celeste {
    background-color: #38C3B9;
  }
  
  .verde {
    background-color: #89bf48;
  }
  
  .image img {
    max-height: 500px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translate(-100%, -50%);
  }
  
  #imagenes-home {
    display: flex;
    flex-direction: column;
  }
  
  #imagenes-home .logos img {
    width: 200px;
    z-index: 2;
  }
  
  .image-slide.active {
    opacity: 1;
    z-index: 2;
    /* Cambié el z-index a 1 para que las imágenes se superpongan correctamente */
  }
  
  .logos-home {
    z-index: 2;
    position: absolute;
    top: 10%;
    right: 37%;
  
  
  }
  
  .logos-home a {
  
    cursor: pointer;
   
    height: auto;;
  }
  
  .logos-home img {
    width: 200px;
    position: absolute;
    /* Hace que las imágenes se superpongan */
    opacity: 0;
    /* Oculta las imágenes inicialmente */
    display: none;
  
  }
  
  
  
  .logos-home img.active-on {
    opacity: 1;
    /* Hace visibles las imágenes con la clase active-on */
    display: block;
  }
  
  #video-bg,
  #video-bg-index,
  #video-bg-black,
  #video-bg-gold
  {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: 1;
  }
  
  /* Esto es para soloturnos-black */
  
  .banner-logo img {
    max-width: 200px;
    margin-top: 2rem;
  
  }
  
  @media (min-width:1439px) {
    .logos-home {
      right: 30%;
    }
  }
  
  @media(max-width:1438px) {
    .logos-home {
      right: 28%;
    }
  }
  
  @media(min-width:1920px) {
    .logos-home {
      right: 27%;
    }
  }
  
  @media(max-width:1025px) {
    .logos-home {
      right: 37%;
    }
  }
  
  
  
  @media screen and (max-width: 769px) {
    .banner {
      flex-direction: column;
    }
  
    .logos-home {
      display: none;
    }
  
    section.banner {
      height: 100vh;
    }
  
    .botones-banner {
      display: flex;
      justify-content: center;
      margin-top: 0.5rem;
    }
  
    .content,
    .image {
      max-width: 100%;
    }
  
    .image img {
      max-height: 300px;
      transform: translate(-50%, -86%);
    }
  
    .boton-banner {
      margin-top: 15px;
    }
  
  
  }
  
  @media (max-width:425px) {
    .boton-banner {
      margin-right: 0;
    }
  
    .title {
      font-size: 2rem;
    }
  
    .paragraph-title {
      font-size: 1rem;
    }
  
    .image img {
      max-height: 300px;
      transform: translate(-50%, -100%);
    }
  
    .botones-banner {
      display: flex;
      flex-direction: column;
      text-align: center;
      margin-top: 0;
    }
  
  }
  
  
  @media (max-width:1023px) {
    .banner-logo {
      display: none;
    }
  }