body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* ANIMACIONES */
.animated {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animated.active {
    opacity: 1;
    transform: translateY(0);
}

.animated.inactive {
    opacity: 0;
    transform: translateY(50px);
}

/* ESTILO GENERAL */
body {
    font-family: Arial, sans-serif;
}

.navbar-brand img {
    max-height: 50px;
    width: auto;
    opacity: 1.5;
}

.nav-link:hover {
    color: #000000;
    text-decoration: underline;
}

.nav-item {
    margin-left: 10px;
}

/* ----------------------------------------------
  Generated by AnimatiSS
  Licensed under FreeBSD License
  URL: https://xsgames.co/animatiss
  Twitter: @xsgames_
---------------------------------------------- */
.tracking-out-expand-forward-top {
    animation: tracking-out-expand-forward-top 0.4s linear both;
  }
  
  @keyframes tracking-out-expand-forward-top {
    0% {
      transform: translateZ(0) translateY(0);
      opacity: 1;
    }
    60% {
      opacity: 0.8;
    }
    100% {
      letter-spacing: 1em;
      transform: translateZ(300px) translateY(-200px);
      opacity: 0;
    }
  }
  
  .link-wrapper {
    display: inline-block;
    width: 100px; /* Ajustá según el ancho promedio del texto */
    overflow: hidden;
    vertical-align: middle;
    text-align: center; /* opcional */
  }
  
  /* HEADER TRANSPARENTE */
  .header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #b2d5ee;
    opacity: 0.85; /* Opacidad del 85% */
    z-index: 10; /* Asegura que esté por encima del video */
  }
  
  /* NAVBAR TRANSPARENTE */
  .navbar {
    background-color: #b2d5ee !important;
    opacity: 0.85; /* Transparencia en la barra de navegación */
  }
  
  /* Enlaces activos en navbar */
  .nav-link.active {
    font-weight: bold;
    color: #007bff; /* Cambialo si querés otro color */
  }
  
  .nav-link.active:hover {
    text-decoration: none;
  }
  
  /* Hover en enlaces */
  .nav-link:hover {
    text-decoration: none;
  }
  
  /* CONTENEDOR */
  .container {
    max-width: 1300px;
  }
  
  /* BOTÓN "CONTÁCTANOS" */
  .btn-contactanos {
    background-color: #007cd5;
    color: white;
    border: 2px solid #007cd5;
    padding: 6px 15px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    line-height: 1.5;
  }
  
  .btn-contactanos:hover {
    background-color: transparent;
    color: #007cd5;
    border-color: #007cd5;
  }
  
  /* Responsive para botón */
  @media (max-width: 768px) {
    .btn-contactanos {
      font-size: 14px;
      padding: 8px 16px;
    }
  }
  
  /* Navbar items para alinear verticalmente */
  .navbar-nav .nav-item {
    display: flex;
    align-items: center;
  }
  
  /* Animación para subir texto */
  .subir {
    animation: subirTexto 0.4s forwards;
  }
  
  @keyframes subirTexto {
    0% {
      transform: translateY(0);
      opacity: 1;
    }
    100% {
      transform: translateY(-10px);
      opacity: 1;
    }
  }
  
  /* Animación para bajar texto */
  .bajar {
    animation: bajarTexto 0.4s forwards;
  }
  
  @keyframes bajarTexto {
    0% {
      transform: translateY(-10px);
      opacity: 1;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  
  


/* VIDEO COMO BANNER */
.banner-video {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1; /* Permite que el header se vea sobre el video */
}

/* CARRUSEL */
.carrusel-contenedor {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.carousel {
    position: relative;
    width: 100%;
}

.carousel-images {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 1s ease-in-out;
}

.propuesta-de-valor_contenedor {
  width: 100%;
  padding: 6em 18% 4em 18%;
  background: transparent;
}

.contenedor-titulo-propuesta {
  text-align: center;
  margin-bottom: 3em;
}

.contenedor-titulo-propuesta h2 {
  font-size: 40px;
  color: #222;
  margin-bottom: 0.5em;
}

.grid-propuestaIcons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  justify-content: center;
  align-items: start;
  transition: opacity 0.6s ease, transform 0.6s ease;
  opacity: 0;
  transform: translateY(50px);
}

.grid-propuestaIcons.active {
  opacity: 1;
  transform: translateY(0);
}

.propuesta-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 2em;
  text-align: center;
  transition: transform 0.3s ease;
}

.propuesta-card:hover {
  transform: translateY(-5px);
}

.propuesta-card img {
  width: 60px;
  margin-bottom: 1em;
}

.propuesta-card p {
  font-size: 16px;
  color: #333;
  margin: 0;
}

/* SECCIÓN MARCAS */
.titulo-subtitulo h2 {
    font-size: 50px;
}

.titulo-subtitulo p {
    font-size: 20px;
}

.marcas-home_contenedor {
    padding: 0em 10%;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    padding: 0em 0;
    background: radial-gradient(circle, #007cd5 0%, transparent 45%, transparent 100%);
}

.marcas-home_contenedor.active {
    opacity: 1;
    transform: translateY(0);
}

.marcas-logos {
    padding: 2em 5em 0 5em;
    display: flex;
    justify-content: space-evenly;
    margin-top: 2em;
}

.contenedor-img1, .contenedor-img2, .contenedor-img3 {
    width: 300px;
    height: 450px;
    padding: 10px;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 15px;
    box-shadow: 0px 00px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.parrafo-logos {
    margin-top: 10px;
    font-size: 14px;
}

.parrafo-logos a { 
    color: #000000;
}

.imagen img {
    width: 250px;
    height: auto;
    margin-top: 6em;
}

/* Asegurar que el título general siempre esté arriba */
.titulo-subtitulo {
    position: relative; /* Evita que se mezcle con los contenedores */
    z-index: 10; /* Mantenerlo siempre por encima */
    width: 100%; /* Asegurar que ocupe todo el ancho */
    text-align: center; /* Centrar el texto */
}

/* Contenedor general cuando está expandido */
.marcas-home_contenedor.expandido {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Estilos para la marca expandida */
.contenedor-img1.expandido, 
.contenedor-img2.expandido, 
.contenedor-img3.expandido {
    width: 90%; /* Ocupar casi todo el ancho */
    height: auto;
    transition: all 0.5s ease-in-out;
    display: flex;
    flex-direction: column; /* Asegurar que todo esté en columna */
    align-items: center; /* Centrar contenido */
}

/* Asegurar que el título y demás elementos queden bien alineados */
.contenedor-img1.expandido h2, 
.contenedor-img2.expandido h2, 
.contenedor-img3.expandido h2 {
    text-align: center;
    width: 100%;
}

/* Ajuste del contenedor de las marcas */
.marcas-home_contenedor {
    text-align: center;
}


/* Contenedor de las marcas */
.marcas-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    transition: all 0.3s ease-in-out;
}

/* Estilos básicos de cada marca */
.contenedor-img1,
.contenedor-img2,
.contenedor-img3 {
    width: 30%;
    text-align: center;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

/* Cuando una marca está expandida, ocupa todo el ancho */
.marcas-logos.expandido {
    justify-content: center;
}

.contenedor-img1.expandido,
.contenedor-img2.expandido,
.contenedor-img3.expandido {
    width: 100%;
    max-width: 100%;
}

/* Ocultar las otras marcas cuando una está expandida */
.marcas-logos.expandido .contenedor-img1:not(.expandido),
.marcas-logos.expandido .contenedor-img2:not(.expandido),
.marcas-logos.expandido .contenedor-img3:not(.expandido) {
    display: none;
}

/* Estilos del botón "Ver más" */
.parrafo-logos{
    color: #000;
}

.parrafo-logos a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background: transparent;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    transition: color 0.3s;
}

.parrafo-logos a:hover {
    color: #007cd5;
}

.marcas-home_contenedor {
    text-align: center;
    margin: 10px auto 0 auto;
}

.marcas-logos {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    transition: all 0.5s ease;
}




/* SECCIÓN COMENTARIOS */

.contenedorComentarios {
    width: 100%;
    height: auto;
    margin-top: 2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: -4em;
    padding: 0em 0em 5em 0;
    border-radius: 1em;
    background: transparent; /* Fondo semitransparente para que se vea la imagen */
    backdrop-filter: blur(5px); /* Difuminar la imagen para mejorar el efecto */
}


.contenedor1{
    margin-bottom: 2em;
}
.contenedor1, .contenedor2{
    width: 500px;
    height: 270px;
    padding: 10px 2em;
    background-color: #b3d0e4;
    border-radius: 1em;
    display: flex;
    align-items: center;
    gap: 1.5em;
     
}

.contenedor1 .comentario, .contenedor2 .comentario{
    width: 100%;
    height: auto;

}
.contenedor1 .comentario p, .contenedor2 .comentario p{
  margin-bottom: 0;
}
.contenedor1  div img, .contenedor2 div img{
    color: #007cd5;
    width: 70px;
    height: auto;
}
.contenedor1 {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    right: 14em;
    top: 2.5em;
    position: relative;
}
.contenedor2 {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    bottom: 2.5em;
    left: 14em;
    position: relative;
}
.contenedor1  div h5, .contenedor2 div h5{
    font-size: 15px;
}

.nombreComent{
    font-size: 25px;
}
.contenedor-titulo-propuesta{
    margin-top: 2em;
    padding-bottom: 2em;
}
.grid-propuestaIcons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    margin-top: 2rem;
  }
  
  .propuesta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .propuesta-item img {
    width: 60px; /* ajustá el tamaño si querés */
    height: auto;
  }
  
  .propuesta-item p {
    font-size: 1rem;
    color: #333;
    font-weight: 800;
  }
  
  

.img-propuesta{
    width: 100px !important;
    height: auto;
}
@media (min-width:1024px) {
   .contenedorComentarios h2{  font-size: 40px}
   .marcas-home_contenedor{
    height: auto;
    padding-bottom: 10%;
    margin-top: 0;
   }
}
@media (max-width: 1400px) { 
        .contenedor1, .contenedor2{
    width: 400px;
    height: 225px;
}
.contenedor1  div h5, .contenedor2 div h5{
    font-size: 15px;
}
.contenedor1 {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    right: 10em;
    top: 3em;
    position: relative;
}
.contenedor2 {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    bottom: 3em;
    left: 10em;
    position: relative;
}
}
@media (max-width: 1024px) {

    /* HEADER TRANSPARENTE */
.header {
    position: initial;
    top: 0;
    width: 100%;
    background-color: #b2d5ee;
    opacity: 0.85; /* Opacidad del 60% */
    z-index: none; /* Asegura que esté por encima del video */
}

/* NAVBAR TRANSPARENTE */
.navbar {
    background-color: #b2d5ee !important;
    opacity: 0.85; /* Transparencia en la barra de navegación */
}
    .banner-video {
        width: 100%;
        height: auto;
        position:initial;
        top: none;
        left: none;
        z-index: none; /* Permite que el header se vea sobre el video */
    }



    .grid-propuestaIcons {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .contenedor-img1, .contenedor-img2, .contenedor-img3 {
        width: 45%;
        height: auto;
    }

    .marca {
        width: 45%;
    }
/* SECCIÓN COMENTARIOS */

.contenedorComentarios {
    width: 100%;
    height: auto;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14em;
    padding: 5em 0em 8em 0;
    border-radius: 1em;
    background: transparent;
    backdrop-filter: blur(5px); /* Difuminar la imagen para mejorar el efecto */
}
    .contenedor1, .contenedor2 {
        margin: 0 auto;
        left: 0;
        right: 0;
        width: 90%;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 1em;
        padding-bottom: 2em;
    }
    .contenedor1{
        margin-bottom: 4em;
    }

    .contenedor1 div img, .contenedor2 div img {
        width: 60px;
    }
}

@media (max-width: 768px) {
    .grid-propuestaIcons {
        grid-template-columns: repeat(2, 1fr);
      }
    .propuesta-de-valor_contenedor {
        padding: 4em 5%;
    }

    .contenedor-titulo-propuesta h2,
    .titulo-subtitulo h2 {
        font-size: 30px;
    }

    .titulo-subtitulo p {
        font-size: 16px;
        margin-bottom: 0%;
    }

    .grid-propuestaIcons {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 2em;
    }

    .item1_item img, .item2_item img, .item3_item img, .item4_item img {
        width: 70px;
    }



    .marcas-logos {
        flex-direction: column;
        align-items: center;
    }

    .contenedor-img1, .contenedor-img2, .contenedor-img3,
    .marca {
        width: 90%;
        height: auto;
        padding-bottom: 25%;

    }

    .marca.expandida {
        flex-direction: column;
        align-items: center;
    }

    .marca.expandida .imagen, 
    .marca.expandida .marca-info {
        text-align: center;
        padding: 0;
    }
    .marca.expandida .marca-info {
        padding: 1em 0;
    }

    .contenedor1, .contenedor2 {
        width: 95%;
        flex-direction: column;
        align-items: center;
        gap: 1em;
        text-align: center;
    }

    .nombreComent {
        position: static;
        margin-top: 1em;
    }

    .btn-contactanos {
        font-size: 12px;
        padding: 6px 12px;
    }

    .banner-video {
        height: auto;
    }
}
  
@media (max-width: 480px) {
    .img-propuesta{
        width: 170px !important;
        height: auto;
    }
    .propuesta-de-valor_contenedor {
        padding: 7em 0% 0 0%;
    }
    .grid-propuestaIcons {
        grid-template-columns: 250px;
      }

    .contenedor-img1 img, .contenedor-img2 img, .contenedor-img3 img {
        width: 100%;
    }
    .marcas-navegacion{
        padding:0;
        display: flex;
        flex-direction: column;
    }
    .marca {
        width: 100%;
        padding-bottom: 6em;
        justify-content: space-between;
        height:700px;
    }
    .marca.expandida{
        height: 600px;
        padding: 2em auto;
    }
    .marca.expandida .marca-info p{
        padding-bottom: 2em;
    }
    .marcas-logos{
        padding: 0;
    }
    .imagen img {padding-bottom: 3em;}

    .contenedor1 div img, .contenedor2 div img {
        width: 50px;
    }

    .contenedor-titulo-propuesta h2,
    .titulo-subtitulo h2 {
        font-size: 24px;
    }

    .titulo-subtitulo p {
        font-size: 14px;
    }

    .btn-contactanos {
        width: 100%;
        font-size: 14px;
        padding: 10px 0;
    }
    .contenedor1 {
        position: initial;
        top: 0em;
        height: auto;
    }
    .contenedor2 {
        bottom: 0em;
        position: initial;
        height: auto;
    }
}


/* Importar desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans:wght@400;600&display=swap');

/* Títulos principales */
h1, h2, .titulo-principal {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/* Subtítulos y textos secundarios */
body{
    font-family: 'Open Sans', sans-serif;
    font-weight: 340;
}


 .seccion-marcas {
    padding: 5rem 2rem;
    background: transparent;
    text-align: center;
  }

  .seccion-marcas__titulo h2 {
    font-size: 36px;
    margin-bottom: 0.5em;
  }

  .seccion-marcas__titulo p {
    font-size: 18px;
    margin-bottom: 2rem;
  }

  .seccion-marcas__navegacion {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }

.seccion-marcas__contenedor {
  display: flex;
  gap: 1rem;
  overflow: visible; /* Permite ver el flip completo */
}


  .navegacion__flecha {
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
  }

  .tarjeta-marca {
    background-color: transparent;
    width: 280px;
    height: 360px;
    perspective: 1000px;
    border-radius: 20px;
    flex-shrink: 0;
  }

  .tarjeta-marca__inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .tarjeta-marca:hover .tarjeta-marca__inner {
    transform: rotateY(180deg);
  }

  .tarjeta-marca__front,
  .tarjeta-marca__back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em;
    text-align: center;
  }

  .tarjeta-marca__front img {
    width: 80%;
    height: auto;
    max-height: 80%;
    object-fit: contain;
  }

  .tarjeta-marca__back {
    background: linear-gradient(to bottom right, #0077c0, #61dafb);
    color: white;
    transform: rotateY(180deg);
    flex-direction: column;
    justify-content: center;
  }

  .tarjeta-marca__back h3 {
    margin-bottom: 0.5em;
  }

  .tarjeta-marca__back p {
    font-size: 0.9em;
    line-height: 1.4;
    max-width: 90%;
  }




  body {
  background: none;
  position: relative;
}


