/* Reset básico */
/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fuente */
@font-face {
  font-family: 'BAHNSCHRIFT';
  src: url('IMAGENES/tipo/BAHNSCHRIFT.TTF') format('truetype');
}

body {
  font-family: 'BAHNSCHRIFT', sans-serif;
}

/* HEADER */
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HEADER BASE */
header {
  display: flex;
  align-items: center;
  padding: 20px 70px;
  background-color: #3a63a8;
  color: white;
  gap: 30px;
}

/* LOGO */
.loguito {
  height: 100px;
  width: auto;
  flex-shrink: 0;
}

/* NAV DESKTOP */
nav {
  display: flex;
  gap: 20px;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: clamp(12px, 1vw, 18px);
  white-space: nowrap;
  transition: color 0.3s;
}

nav a:hover {
  color: skyblue;
}

/* ICONO HAMBURGUESA */
.menu-icon {
  display: none;
  font-size: 30px;
  cursor: pointer;
  margin-left: auto; /* SIEMPRE a la derecha */
}

/* MENÚ MOBILE */
.menu-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 75%;
  max-width: 300px;
  height: 100vh;
  background-color: #3a63a8;
  display: flex;
  flex-direction: column;
  padding: 25px;
  gap: 25px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.menu-mobile.active {
  transform: translateX(0);
}

.menu-mobile a {
  color: white;
  text-decoration: none;
  font-size: 20px;
}

.menu-mobile a:hover {
  color: skyblue;
}

.close-icon {
  align-self: flex-end;
  font-size: 30px;
  cursor: pointer;
}

/* 💻 NOTEBOOK / TABLET GRANDE */
@media (max-width: 1400px) {
  header {
    padding: 15px 30px;
    gap: 15px;
  }

  nav {
    gap: 10px;
  }

  .loguito {
    height: 75px;
  }
}

/* 💻 TABLET / NOTEBOOK (ACÁ CAMBIA TODO 🔥) */
@media (max-width: 900px) {
  header {
    padding: 15px 20px;
  }

  nav {
    display: none; /* ocultamos menú normal */
  }

  .menu-icon {
    display: block; /* aparece hamburguesa */
  }

  .loguito {
    height: 65px;
  }
}

/* 📱 MOBILE */
@media (max-width: 480px) {
  .loguito {
    height: 55px;
  }

  .menu-mobile {
    width: 85%;
  }
}

/* Estilos del banner */
.banner {
    position: relative;
    width: 100%;
    height: 70vh; /* Ocupa toda la pantalla */
    background-image: url('IMAGENES/Banner.jpeg'); /* Reemplaza con tu imagen */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
}

.banner-text {
    position: absolute;
    color: #4873bd;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.28);
    padding: 20px;
}

.banner-text h1 {
    font-size: 60px;
    margin-bottom: 10px;
    margin-left: 50px;
    margin-top: 10px;
}

.banner-text p {
    font-size: 25px;
}

/* Responsive Styles */



@media (max-width: 480px) {
    .banner-text h1 {
        font-size: 28px;
    }

    .banner-text p {
        font-size: 16px;
    }
}
.timeline-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.timeline-dates {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}
.timeline-dates button {
    background: none;
    border: none;
    font-size: 30px;
    color: #555;
    margin: 30px 0;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
}
.timeline-dates button:hover {
    color: skyblue;
    transform: scale(1.3);
}
.timeline-dates button.active {
    font-weight: bold;
    color: black;
    transform: scale(3);
}
.timeline-content {
    flex: 3;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-left: 20px;
}
.timeline-image {
    margin-top: 20px;
    text-align: center;
}
.timeline-image img {
    max-width: 100%;
    border-radius: 8px;
}
.timeline-text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
}

/* Estilos generales */
.footer {
  background-color: #3a63a8;
  color: #fff;
  padding: 24px 0;
  font-family: 'BAHNSCHRIFT', sans-serif;
  text-align: center;
}

/* Contenedor general */
.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding-bottom: 20px;
  flex-wrap: wrap; /* Permite que se acomode en mobile */

}

/* Menús */
.menu {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

.menu a:hover {
  color: skyblue;
}

@media (max-width: 768px) {
 .menu{
        display: none;
    }
}
/* Logo */
.logo img {
  max-width: 250px;
  height: auto;
}

/* Redes sociales */
.footer-socials {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.icon {
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s, color 0.3s;
}

.icon:hover {
  transform: scale(1.5);
  color: skyblue;
}

/* Contador */
.contador-visitas {
  margin: 10px 0;
  font-size: 14px;
}

.contador-visitas a {
  color: #fff;
  text-decoration: underline;
}

/* Dirección */
.direc {
  font-size: 18px;
  margin-top: 10px;
}

/* Derechos */
.footer-rights {
  margin-top: 10px;
  font-size: 15px;
  color: #ccc;
  background-color: #3a63a8;
}

/* 🌐 RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }

  .menu {
    flex-direction: column;
    gap: 10px;
  }

  .menu a {
    font-size: 16px;
  }

  .logo img {
    max-width: 200px;
  }

  .icon {
    font-size: 26px;
  }
}

  
  .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}
.card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease-in-out;
    border-radius: 25px;
}

.card1 {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease-in-out;
    border-radius: 25px;
}

@media (max-width: 768px) {
  .card img{
    width: 500px ;
  }
}

.card1 img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10;
}
.card1:hover {
    transform: scale(1.05);
}

.card1-content {
    padding: 15px;
}
.card1 h3 {
    margin: 10px 0;
    font-size: 18px;
}
.card1 li {
    font-size: 14px;
    color: #555;
}
.card1 a {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

.card1:hover {
    transform: scale(1.05);
}

.card img {
    width: 400px;
    height: 200px;
    object-fit: cover;
}
.card-content {
    padding: 15px;
}
.card h3 {
    margin: 10px 0;
    font-size: 18px;
}
.card li {
    font-size: 14px;
    color: #555;
}
.card a {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

.boy{
    background-color: white;
    font-family: 'BAHNSCHRIFT', sans-serif; 
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.wrapper {
    background-color: white;
    padding: 20px;
    width: 80%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.item-card {
    display: flex;
    align-items: center;
    background-color: skyblue;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.s ease-in-out;
    width: 100%;
}
.item-card:hover {
    background-color: rgb(189, 231, 248);
}
.item-card img {
    width: 130px;
    height: 100px;
    margin-right: 15px;
}
.item-card h3 {
    margin: 0;
    color: #000;
}
@media (max-width: 600px) {
    .wrapper {
        width: 90%;
    }
    .item-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .item-card img {
        margin-bottom: 10px;
    }
}

#contador {
    font-size: 24px;
    font-weight: bold;
    background-color: skyblue;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    display: inline-block;
    color:white;

}

.roda{
    text-decoration: none;
}

#contador-visitas {
    font-size: 24px;
    font-weight: bold;
    background-color: #f0f0f0;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    display: inline-block;
}
.seccion-titulo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    margin-left: 40px;
}
.texto-titulo {
    font-size: 24px;
    font-weight: bold;
}
.barra-separadora {
    flex-grow: 1;
    height: 2px;
    background-color: black;
    margin-left: 10px;
    margin-right: 20px;
}
.contenido-principal {
    margin-left: 20px;
}

.formulario-contacto {
  background-color: white;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.formulario-contacto h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #222;
}

.formulario-contacto form {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 15px;
  color: #000;
}

.formulario-contacto input[type="text"],
.formulario-contacto input[type="email"],
.formulario-contacto textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
}

.formulario-contacto textarea {
  resize: vertical;
}

.formulario-contacto button {
  background-color: #005792;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  justify-self: start;
}

.formulario-contacto button:hover {
  background-color: #004270;
}

input::placeholder {
  color: black; /* Cambiá esto al color que quieras */
}

textarea::placeholder{
  color: black;
}

  .emp {
    margin: 0;
    font-family: 'BAHNSCHRIFT', sans-serif;
    background-color: #f5f5f5;
  }
  
  .empresa {
    background: linear-gradient(to bottom right, white, white);
    padding: 60px 40px;
    color: #03455c;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .titulo-linea {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
  }
  
  .titulo-linea h2 {
    font-size: 28px;
    color: #215d9c;
    margin-bottom: 10px;
    z-index: 2;
    position: relative;
  }
  
  .titulo-linea .linea {
    width: 100%;
    height: 2px;
    background-color: #215d9c;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
  }
  
  .empresa-contenido {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1100px;
  }
  
  .empresa-img {
    width: 340px;
    border-radius: 10px;
    /* Ya no tiene filtros */
  }
  
  .empresa-texto {
    max-width: 600px;
  }
  
  .empresa p {
    font-size: 16px;
    line-height: 1.6;
    font-family: 'BAHNSCHRIFT', sans-serif;  
  }

.galeria {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  background-color: #c6e3f1;
}

/* TITULO */
.galeria h2 {
  text-align: center;
  position: relative;
  font-size: 2rem;
  color: #006699;
  margin-bottom: 2rem;
}

.galeria h2::before,
.galeria h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 25%;
  height: 2px;
  background-color: #006699;
  transform: translateY(-50%);
}

.galeria h2::before {
  left: 0;
}

.galeria h2::after {
  right: 0;
}

/* GRID DESKTOP (SIEMPRE 5 COLUMNAS) */
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, 1fr);
}

/* ITEMS */
.gallery-item {
  --offset: 0px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  cursor: pointer;
  height: 350px;
  transform: translateY(var(--offset));
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* DESNIVEL */
.gallery-item:nth-child(3n+1) {
  --offset: 10px;
}
.gallery-item:nth-child(3n+2) {
  --offset: -10px;
}
.gallery-item:nth-child(3n) {
  --offset: 5px;
}

/* HOVER */
.gallery-item:hover {
  transform: translateY(var(--offset)) scale(1.05);
}

/* LIGHTBOX */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.overlay-content {
  position: relative;
}

.overlay-content img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

/* ================= 📲 TABLET ================= */
@media (max-width: 1024px) {

  /* 🔥 mantenemos 5 columnas también en tablet */
  .gallery-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .gallery-item {
    height: 180px;
  }

  .galeria h2 {
    font-size: 1.8rem;
  }

  .galeria h2::before,
  .galeria h2::after {
    width: 20%;
  }
}

/* ================= 📱 MOBILE ================= */
@media (max-width: 768px) {

  .galeria {
    padding: 0 10px;
  }

  .galeria h2 {
    font-size: 1.5rem;
  }

  /* 🔥 UNA IMAGEN POR FILA */
  .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
    justify-items: center;
  }

  .gallery-item {
    width: 85%;
    height: 500px;
    --offset: 0px;
    transform: none;
  }

  .gallery-item:hover {
    transform: scale(1.02);
  }

  .galeria h2::before,
  .galeria h2::after {
    width: 15%;
  }
}

/* ================= 🖥️ PANTALLAS GRANDES ================= */
@media (min-width: 1400px) {

  .galeria {
    max-width: 1400px;
  }

  .gallery-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .galeria h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 1366px) {
  .carousel-track img {
    max-width: 130px;
  }

  .carousel-track {
    gap: 20px;
  }
}

/* Tablet y móviles */
@media (max-width: 1024px) {
  .carousel-track img {
    max-width: 110px;
  }

  .carousel-track {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .titulo-marcas h2 {
    font-size: 24px;
  }

  .carousel-track {
    gap: 10px;
  }

  .carousel-track img {
    max-width: 90px;
  }
  
}

@media (max-width: 480px) {
  .titulo-marcas h2 {
    font-size: 20px;
  }

  .carousel-track {
    flex-wrap: wrap;
    justify-content: center;
  }

  .carousel-track img {
    max-width: 80px;
    margin-bottom: 10px;
  }

  .galeria h2{
    font-size: 20px;
  }
}

  .seccion-marcas {
    background: linear-gradient(to right, #79c6cc, #72c6cd);
    padding: 40px 20px;
    text-align: center;
    position: relative;
  }

  .seccion-marcas::before,
  .seccion-marcas::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #355ba2;
  }

  .seccion-marcas::before {
    top: 0;
  }

  .seccion-marcas::after {
    bottom: 0;
  }

  .titulo-marcas {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
  }

  .titulo-marcas::before,
  .titulo-marcas::after {
    content: "";
    flex: 1;
    height: 2px;
    background-color: #355ba2;
    margin: 0 10px;
  }

  .titulo-marcas h2 {
    margin: 0;
    font-size: 28px;
    color: #355ba2;
    font-weight: bold;
  }

  .imagen-marcas {
    max-width: 80%;
    height: auto;
  }


  @media (max-width: 1366px) {
    .titulo-marcas h2 {
      font-size: 22px;
    }
    .carousel-container {
      width: 100%;
      overflow-x: auto;
      overflow-y: hidden;
  }
  
  .carousel-track {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
  }
  
  .carousel-track img {
      height: 80px;
      margin: 10px 20px;
      flex-shrink: 0;
  }
  
  }
  @media (max-width: 600px) {
    .titulo-marcas h2 {
      font-size: 22px;
    }
    .carousel-container {
      width: 100%;
      overflow-x: auto;
      overflow-y: hidden;
  }
  
  .carousel-track {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
  }
  
  .carousel-track img {
      height: 80px;
      margin: 10px 20px;
      flex-shrink: 0;
  }
  
  }

 .banner-video {
  position: relative;
  width: 100%;
  padding-top: 36%;
  background-color: black;
  overflow: hidden;
}

.banner-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0); /* sin oscuridad */
    z-index: 1;
  }
  
  .contenido-banner {
    position: absolute;
    z-index: 2;
    padding: 2rem;
    color: white;
    font-size: 2.5rem;
    text-align: left;
    max-width: 90%;
  }
  
  @media (max-width: 768px) {
  .banner-video {
    padding-top: 56.25%; /* 16:9 */
  }

  .contenido-banner {
    font-size: 1.5rem;
    padding: 1rem;
  }
}


  .whatsapp-fijo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }
  
  .whatsapp-fijo img {
    width: 24px;
    height: 24px;
  }
  
  .whatsapp-fijo:hover {
    transform: scale(1.1);
  }
  
  .car{
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #cce6ff;
    font-family: sans-serif;
  }
  
  #loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3a63a8;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    
}
  #loader img {
    width: 140px; /* ajustá el tamaño a lo que necesites */
    animation: girar 2s linear infinite;
  }

  @keyframes girar {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

  .carrusel-container {
      position: relative;
      max-width: 90%;
      margin: auto;
      overflow: hidden;
    }

    .titulo {
      text-align: center;
      margin-bottom: 20px;
      font-weight: 500;
      letter-spacing: 2px;
    }

    .carrusel {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .item {
      min-width: 25%;
      padding: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .item img {
      max-width: 100%;
      height: auto;
      max-height: 80px;
      object-fit: contain;
      filter: grayscale(100%);
      transition: filter 0.3s ease;
    }

    .item img:hover {
      filter: grayscale(0%);
    }

    .flecha {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: #000000aa;
      color: white;
      border: none;
      font-size: 20px;
      padding: 10px;
      cursor: pointer;
      z-index: 10;
    }

    .flecha.izquierda {
      left: 0;
    }

    .flecha.derecha {
      right: 0;
    }

    @media (max-width: 768px) {
      .item {
        min-width: 50%;
      }
    }

    @media (max-width: 480px) {
      .item {
        min-width: 100%;
      }
    }

    .section-partners {
      width: 100%;
      padding: 50px 0;
      background-color: white;
      position: relative;
    }

    .title {
      text-align: left;
      font-size: 20px;
      letter-spacing: 2px;
      margin-left: 100px;
      margin-bottom: 40px;
      color: #3a63a8;
      position: relative;
      display: inline-block;
    }

    .title::before {
      content: "";
      position: absolute;
      left: -100px;
      top: 50%;
      transform: translateY(-50%);
      width: 80px;
      height: 3px;
      background-color: #3a63a8;
    }

    .carousel-container {
      overflow: hidden;
      position: relative;
      
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
      gap: 15px;
      margin-left: 80px;
    }

    .carousel-track img {
      width: 120px;
      height: auto;
      flex-shrink: 0;
      transition: transform 0.3s, filter 0.3s;
    }

    .carousel-track img:hover {
      transform: scale(1.15);
  
    }

    @media (max-width: 768px) {
      .carousel-container {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch; /* Suaviza el scroll en móviles */
        margin-left: 15px;
        margin-right: 15px;
      }
    
      .carousel-track {
        margin-left: 20px; /* Ajusta margen para pantallas chicas */
        margin-right:20px;
        width: max-content; /* Permite que las imágenes se acomoden horizontalmente */
      }
    
      .carousel-track img {
        width: 80px; /* Opcional: Podés reducir un poquito el tamaño en celulares */
      }
    
      .title {
        margin-left: 20px;
        font-size: 18px;
      }
    
      .title::before {
        left: -40px;
        width: 30px;
      }
    }

    .bodys {
      font-family: 'BAHNSCHRIFT', sans-serif;
      background-color: white;
      padding: 2rem;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .seccion-empresa {
      position: relative;
      max-width: 1200px;
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }

    .foto-contenedor {
      position: relative;
      flex: 1 1 400px;
      margin-right: -50px;
      z-index: 2;
    }

    .fondo-azul {
      position: absolute;
      top: 0;
      left: -30px;
      width: 100%;
      height: 100%;
      background-color: #3366b4;
      border-radius: 40px;
      z-index: 1;
    }

    .foto-contenedor img {
      position: relative;
      width: 100%;
      height: auto;
      border-top-left-radius: 40px;
      border-bottom-left-radius: 40px;
      border-top-right-radius: 40px;
      border-bottom-right-radius: 40px;
      object-fit: cover;
      z-index: 2;
      padding:20px;
      margin-top:60px;
      margin-bottom: 20px;
      margin-right: 10px;
      margin-left: 10px;
      font-family: 'BAHNSCHRIFT', sans-serif;
      
      
    }

    .bloque-descriptivo {
      flex: 1 1 500px;
      background-color: #9dd6e2;
      border-radius: 40px;
      padding: 2rem;
      margin-top: 2rem;
      position: relative;
      z-index: 1;
      font-family: 'BAHNSCHRIFT', sans-serif;
    }

    .bloque-descriptivo h2 {
      color: #3366b4;
      font-size: 1.8rem;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      padding: 20px;
      font-family: 'BAHNSCHRIFT', sans-serif;

    }

    .bloque-descriptivo h2::after {
      content: "";
      flex-grow: 1;
      height: 3px;
      background-color: #3366b4;
      margin-left: 10px;
      font-family: 'BAHNSCHRIFT', sans-serif;
}
  

    .bloque-descriptivo p {
      margin-top: 2rem;
      line-height: 1.6;
      color: white;
      padding: 30px;
      font-family: 'BAHNSCHRIFT', sans-serif;

    }
    .logo-sobrepuesto {
      position: absolute;
      bottom: 40px; /* Lo mantenemos */
      right: 50px; /* Ahora está a la derecha */
      width: 200px;
      height: 200px;
      background-color: white;
      border: 10px solid #99bfe7;
      border-radius: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 3;
      padding: 10px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Opcional: sombrita */
    }
    
    .logo-sobrepuesto img {
      max-width: 100%;
      max-height: 100%;
      bottom: 27px;
      object-fit: contain;
    }
    

    @media (max-width: 768px) {
      .seccion-empresa {
        flex-direction: column;
        align-items: center;
      }

      .foto-contenedor {
        margin-right: 0;
        width: 100%;
        margin-bottom: 1.5rem;
      }

      .bloque-descriptivo {
        width: 100%;
        margin-top:-60px;
      }
    }

    .bodys {
      margin: 0;
      font-family: 'BAHNSCHRIFT', sans-serif;
      background-color: white;
      color: #222;
  }
  
  .hero-section {
      background-color: white;
      padding: 50px 20px;
      text-align: center;
  }
  
  .subtitulo {
      font-size: 18px;
      color: #555;
      margin-bottom: 10px;
      font-family: 'BAHNSCHRIFT', sans-serif;
      
      
  }
  
/* TITULOS */
h1 {
    font-size: 36px;
    margin: 10px 0;
    font-weight: bold;
}

h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #444;
}

/* CONTENEDORES */
.content-grid,
.content-grid2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-grid2 {
    background-color: #3366b4;
    padding: 40px;
    border-radius: 25px;
}

/* COLUMNAS */
.features-left,
.features-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    min-width: 250px;
}

/* ITEMS */
.feature-item {
    display: flex;
    align-items: center;
    font-size: 18px;
    text-align: left;
    transition: 0.3s;
}

.feature-item:hover {
    color: skyblue;
}

/* ICONOS */
.icon,
.icon2 {
    font-size: 24px;
    margin-right: 10px;
}

.icon2 {
    color: #000;
}

.icon2:hover {
    color: skyblue;
}

/* IMAGEN */
.image-center {
    flex: 1;
    min-width: 300px; /* 🔥 antes 500 rompía mobile */
    display: flex;
    justify-content: center;
}

.bearings-img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* BOTON */
.button-container {
    margin-top: 5px;
}
@media (min-width: 1024px) {
  .button-container {
    width: 100%;
    display: flex;
    justify-content: center; /* lo centra abajo */
    margin-top: 5px;
  }
}

.main-button {
    background-color: white;
    color: black;
    border: 2px solid skyblue;
    padding: 12px 24px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 20px;
    text-decoration: none;
    font-family: 'BAHNSCHRIFT', sans-serif;
}

.main-button:hover {
    background-color: skyblue;
    color: white;
}

/* ================= 📱 MOBILE ================= */

@media (max-width: 768px) {

    h1 {
        font-size: 26px;
        text-align: center;
    }

    h2 {
        font-size: 20px;
        text-align: center;
        margin-bottom: 20px;
    }

    .content-grid,
    .content-grid2 {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .features-left,
    .features-right {
        align-items: center;
        text-align: center;
    }

    .feature-item {
        justify-content: center;
        font-size: 16px;
    }

    .image-center {
        min-width: 100%;
    }

    .bearings-img {
        max-width: 300px;
    }

    .main-button {
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* ================= 📲 TABLET ================= */

@media (max-width: 1024px) {

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 24px;
    }

    .bearings-img {
        max-width: 400px;
    }

    .feature-item {
        font-size: 17px;
    }
}

/* ================= 🖥️ PANTALLAS GRANDES ================= */

@media (min-width: 1400px) {

    .content-grid,
    .content-grid2 {
        max-width: 1400px;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 32px;
    }

    .bearings-img {
        max-width: 600px;
    }

    .feature-item {
        font-size: 20px;
    }
}

.title2 {
  text-align: left;
  font-size: 30px;
  letter-spacing: 2px;
  margin-left: 100px;
  margin-bottom: 40px;
  color: #3a63a8;
  position: relative;
  display: inline-block;
}

.title2::before {
  content: "";
  position: absolute;
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 95px;
  height: 3px;
  background-color: #3a63a8;
  
}


.bodyss {
  font-family: Arial, sans-serif;
  background: #fff;
  margin: 0;
  padding: 10px;
}

.xqz-gallery-9823 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1500px;
  margin: auto;
  padding: 10px;
  
}

.xqz-item-4812 {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  height: 250px;
  cursor: pointer;
  
}

.xqz-img-7542 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.5s ease;
}

.xqz-item-4812:hover .xqz-img-7542 {
  transform: scale(1.1);
}

.xqz-overlay-1597 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.xqz-item-4812:hover .xqz-overlay-1597 {
  opacity: 1;
}

.xqz-title-6201 {
  margin: 0;
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  font-family: 'BAHNSCHRIFT', sans-serif;
}

.xqz-button-3084 {
  font-size: 24px;
  text-decoration: none;
  color: #3a63a8;
  border: 2px solid #3a63a8;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
}

.xqz-button-3084:hover {
  background: #3a63a8;
  color: #fff;
}

/* Responsive ajustes */
@media (max-width: 1200px) {
  .xqz-gallery-9823 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .xqz-gallery-9823 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .xqz-gallery-9823 {
    grid-template-columns: 1fr;
  }
}

.bodytt {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: white;
  color: white;
}
.dalman-wrapper {
  max-width: 1200px;
  margin: auto;
  background-color: #001a66;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px black;
}

.dalman-header {
  text-align: center;
  margin-bottom: 20px;
  
}

.dalman-title, .dalman-subtitle {
  margin: 0;
}

.dalman-nav {
  margin-top: 10px;
}

.dalman-nav a {
  color: #3366b4;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

.dalman-nav a:hover {
  text-decoration: underline;
}

.dalman-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3px;
}

.dalman-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-left: 150px;
}

.dalman-column a {
  color: #66b3ff;
  text-decoration: none;
  font-weight: bold;
}

.dalman-column a:hover {
  color: #3366b4;
  text-decoration: none;
}

.dalman-center-image {
  flex: 2;
  text-align: center;
}

.dalman-center-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 8px;
}

.dalman-center-image p {
  margin-top: 10px;
  font-style: italic;
  font-size: 0.9rem;
  color: #ccc;
}

.dalman-footer {
  margin-top: 30px;
  text-align: center;
  font-size: 0.85rem;
}

.dalman-footer a {
  color: #66ccff;
}

.none{
  text-decoration: none;
  color:black;
  font-family: 'BAHNSCHRIFT', sans-serif;
}

.none:hover{
  color: skyblue;
}

.fondo3{
  background: linear-gradient(135deg, #ffffff, rgb(37, 131, 168));
}

/* ===================== */
/* SECCIÓN PRINCIPAL */
/* ===================== */

.main-section {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: auto;
  padding: 20px;
  gap: 40px;

  /* 🔥 FONDO TORNASOLADO */
 
  width: 100%;
}

/* ===================== */
/* TEXTO */
/* ===================== */

.left-content {
  flex: 1;
  min-width: 300px;
}

/* LISTA */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.feature-item2 {
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.feature-item2 i {
  color: #3366b4;
  margin-right: 10px;
}

.feature-item2 a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-family: 'BAHNSCHRIFT', sans-serif;
}

.feature-item2 a:hover {
  text-decoration: underline;
  color: #3366b4;
}

/* ===================== */
/* BOTÓN */
/* ===================== */

.cta {
  margin: 30px 0;
  font-weight: bold;
}

.button {
  background-color: white;
  border: 2px solid #3366b4;
  padding: 10px 20px;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-family: 'BAHNSCHRIFT', sans-serif;
  display: inline-block;
}

.button:hover {
  background-color: #3366b4;
  color: white;
}

/* ===================== */
/* IMAGEN */
/* ===================== */

.right-image {
  flex: 1;
  max-width: 500px;
  text-align: center;
}

.right-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* ===================== */
/* 📱 RESPONSIVE MOBILE */
/* ===================== */

@media (max-width: 768px) {

  .main-section {
    flex-direction: column;
    gap: 20px;
    padding: 20px 15px;
  }

  /* 🔥 IMAGEN ARRIBA */
  .right-image {
    order: -1;
    max-width: 100%;
  }

  .right-image img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
  }

  /* LISTA EN COLUMNA */
  .features {
    grid-template-columns: 1fr;
  }

  .feature-item2 {
    font-size: 0.95rem;
  }

  /* CENTRADO */
  .cta {
    text-align: center;
  }

  .button {
    display: block;
    text-align: center;
    margin: auto;
  }
}

.map-container {
  width: 100%;
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}

.qr-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  z-index: 9999;
}

.qr-fixed img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.qr-fixed img:hover {
  transform: scale(1.05);
}

.body2{
  margin: 0;
  padding: 0;
  background-color: white;
  font-family: sans-serif;
}

.mrcs-carousel {
  overflow: hidden;
  width: 100%;
  max-width: 1500px;
  margin: 40px auto;
}

.mrcs-carousel-track {
  display: flex;
  animation: mrcs-scroll 25s linear infinite;
}

.mrcs-carousel-track img {
  width: 10%;
  object-fit: contain;
  padding: 10px;
}

@keyframes mrcs-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


@media (max-width: 1200px) {
  .mrcs-carousel-track img {
    width: 33.33%; /* 3 imágenes visibles */
  }
}

@media (max-width: 900px) {
  .mrcs-carousel-track img {
    width: 50%; /* 2 imágenes visibles */
  }
}

@media (max-width: 600px) {
  .mrcs-carousel-track img {
    width: 30%; /* 1 imagen visible */
    padding: 15px;
  }
}

@keyframes mrcs-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.layout-wrapper-main78 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
  background-color: #fff;
}


.side-images-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  align-items: center;
}
.side-images-left {
  display: flex;
  flex-direction: column;
  gap: 68px;
  flex: 1;
  align-items: center;
}
.side-images-left img{
  width: 240px;
  height: auto;
  object-fit: contain;
  border-radius: 15px;
  border: 2px solid black;
  padding: 5px;
}


.side-images-right img {
  width: 240px;
  height: auto;
  object-fit: contain;
  border-radius: 15px;
  border: 2px solid black;
  padding: 5px;
}
.img1 {
  height: 500px; /* Ajustá el valor a lo que necesites */
  width: auto;   /* Mantiene la proporción */
}
.side-images-left img:first-child,
.side-images-left img:nth-child(2) {
  width: 350px; /* Aumenta según lo que necesites */
  height: auto;
 
}

.side-images-right img:first-child,
.side-images-right img:nth-child(2) {
  width: 300px; /* Aumenta según lo que necesites */
  height: auto;
  
}
.content-area-parrafosA {
  flex: 2;
  padding: 0 20px;
}

.typography-descriptive-1947 {
  font-size: 1rem;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: center;
}



/* Responsive para móviles */
@media (max-width: 1024px) {
  .layout-wrapper-main78 {
    flex-direction: column;
    align-items: center;
  }
  .content-area-parrafosA {
    padding: 0;
  }
  .side-images-left, .side-images-right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .side-images-left img,
  .side-images-right img {
    width: 45%;
    margin: 10px;
  }
}



@media (max-width: 768px) {
  .layout-wrapper-main78 {
    flex-direction: column;
    padding: 20px;
  }
  .image-display-cards44 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .layout-wrapper-main78 {
    flex-direction: column;
    align-items: center;
    padding: 30px;
  }
  .image-display-cards44 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .image-display-cards44 img:nth-child(1) {
    width: 180px;
    height: 125px;
  }
  .image-display-cards44 img:nth-child(2) {
    width: 260px;
    height: 300px;
  }
  .image-display-cards44 img:nth-child(3) {
    width: 180px;
    height: 270px;
  }
  .image-display-cards44 img:nth-child(4) {
    width: 260px;
    height: 140px;
  }
}
@media (max-width: 768px) {
  .layout-wrapper-main78 {
    flex-direction: column;
    padding: 20px;
    max-width: 100%;
  }

  .image-display-cards44 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .image-display-cards44 img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .image-display-cards44 img:nth-child(1) {
    width: 100%;
    height: auto;
  }

  .image-display-cards44 img:nth-child(2) {
    width:100%;
    height: auto;
  }

  .image-display-cards44 img:nth-child(3) {
    width: 100%;
    height: auto;
    margin-top: 40px;
  }

  .image-display-cards44 img:nth-child(4) {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 630px) {
  .layout-wrapper-main78 {
    flex-direction: column;
    padding: 20px;
    max-width: 100%;
  }

  .image-display-cards44 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .image-display-cards44 img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .image-display-cards44 img:nth-child(1) {
    width: 100%;
    height: auto;
  }

  .image-display-cards44 img:nth-child(2) {
    width:100%;
    height: auto;
  }

  .image-display-cards44 img:nth-child(3) {
    width: 100%;
    height: auto;
    margin-top: 40px;
  }

  .image-display-cards44 img:nth-child(4) {
    width: 100%;
    height: auto;
  }
}

.fondocolor{
  background-color: skyblue;
  padding:25px;
}

 .video-grid-container {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, 1fr);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 2 / 1;
}

/* CELDAS */
.video-cell {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #bd9a5a;
}

.video-cell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* TEXTO */
.video-text {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.5s;
}

.mostrar-texto .video-text {
  opacity: 1;
}

/* GRID PERSONALIZADO */
.grid-v1 { grid-column: 1 / 3; grid-row: 1 / 2; }
.grid-v2 { grid-column: 3 / 4; grid-row: 1 / 2; }
.grid-v3 { grid-column: 4 / 5; grid-row: 1 / 2; }
.grid-v4 { grid-column: 1 / 2; grid-row: 2 / 4; }
.grid-v5 { grid-column: 2 / 3; grid-row: 2 / 4; }
.grid-v6 { grid-column: 3 / 5; grid-row: 2 / 3; }
.grid-v7 { grid-column: 3 / 4; grid-row: 3 / 4; }
.grid-v8 { grid-column: 4 / 6; grid-row: 3 / 4; }
.grid-v9 { grid-column: 5 / 6; grid-row: 1 / 3; }

/* CONTENEDOR */
.mode {
  margin: 0;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

/* 🔥 CORRECCIÓN IMPORTANTE (esto estaba mal) */
.grid-v6 {
  transform: scale(1.05); /* opcional, leve zoom */
}

/* SUB */
.sub {
  background-color: #c6e3f1;
  padding: 15px;
}

/* ================= 📲 TABLET ================= */

@media (max-width: 1024px) {

  .video-grid-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    aspect-ratio: auto;
  }

  /* 🔥 reset del layout complejo */
  .grid-v1, .grid-v2, .grid-v3,
  .grid-v4, .grid-v5, .grid-v6,
  .grid-v7, .grid-v8, .grid-v9 {
    grid-column: span 1 !important;
    grid-row: auto !important;
  }

  .video-cell {
    aspect-ratio: 16 / 9;
  }
}

/* ================= 📱 MOBILE ================= */

@media (max-width: 768px) {

  .video-grid-container {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px;
  }

  .video-cell {
    aspect-ratio: 16 / 9;
  }

  .video-text {
    font-size: 0.9rem;
  }
}

/* ================= 🖥️ PANTALLAS GRANDES ================= */

@media (min-width: 1400px) {

  .video-grid-container {
    max-width: 1400px;
    gap: 20px;
  }

  .video-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {

  .video-grid-container {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px;
    justify-items: center; /* 🔥 centra los videos */
  }

  .video-cell {
    width: 90%;          /* 🔥 no ocupa todo */
    max-width: 300px;    /* 🔥 tamaño máximo */
    aspect-ratio: 16 / 9;
  }
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

button {
  background-color: #0056b3;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.agr{
  width: 7%;
}

@media (max-width: 768px){
  .agr{
  width: 25%;
}
}

/* CONTENEDORES PRINCIPALES */
.bloquePrincipal_k9A2,
.bloqueSecundario_hJ63 {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  font-family: 'BAHNSCHRIFT', sans-serif;
}

/* IMAGEN CENTRAL */
.imagenCentro_k9A2 {
  text-align: center;
  margin-bottom: 40px;
  padding: 50px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.imagenCentro_k9A2 img {
  max-width: 80%;
  height: auto;
}

/* FILAS */
.filaInferior_k9A2,
.filaInversa_hJ63 {
  display: flex;
  align-items: center;
  gap: 20px; /* 🔥 corregido */
  flex-wrap: wrap;
}

/* IMÁGENES */
.imagenIzq_k9A2,
.imagenDer_hJ63 {
  flex: 1 1 400px;
}

.imagenIzq_k9A2 img {
  width: 60%;
  height: auto;
  border-radius: 8px;
  border: 2px solid #000;
}

.imagenDer_hJ63 img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  border: 2px solid #000;
}

/* TEXTOS */
.textoDer_k9A2,
.textoIzq_hJ63 {
  flex: 2 1 400px;
}

.textoDer_k9A2 h2 {
  margin-top: 0;
  font-size: 24px;
}

.textoDer_k9A2 p,
.textoIzq_hJ63 p {
  font-size: 16px;
  line-height: 1.6;
}

/* VIDEO */
.video-responsive {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ================= 💻 NOTEBOOK ================= */
@media (max-width: 1366px) {
  .imagenCentro_k9A2 img {
    max-width: 90%;
  }
}

/* ================= 📲 TABLET ================= */
@media (max-width: 1024px) {

  .filaInferior_k9A2,
  .filaInversa_hJ63 {
    gap: 15px;
  }

  .imagenIzq_k9A2 img {
    width: 80%;
  }

  .textoDer_k9A2 h2 {
    font-size: 22px;
  }

  .textoDer_k9A2 p,
  .textoIzq_hJ63 p {
    font-size: 15px;
  }
}

/* ================= 📱 MOBILE ================= */
@media (max-width: 768px) {

  .title2{
    font-size: 25px;
  }

  .filaInferior_k9A2,
  .filaInversa_hJ63 {
    flex-direction: column;
    align-items: center; /* 🔥 centra todo */
    text-align: center;
    gap: 25px; /* 🔥 más separación prolija */
  }

  /* 🔥 imagen arriba en la inversa */
  .imagenDer_hJ63 {
    order: -1;
  }

  .imagenCentro_k9A2 img {
    max-width: 100%;
  }

  /* 🔥 IMÁGENES MÁS GRANDES Y UNA ABAJO DE LA OTRA */
  .imagenIzq_k9A2,
  .imagenDer_hJ63 {
    width: 100%;
    text-align: center;
  }

  .imagenIzq_k9A2 img,
  .imagenDer_hJ63 img {
    width: 95%;        /* 🔥 más grandes */
    max-width: 500px;  /* 🔥 límite prolijo */
    margin: 0 auto;
    display: block;
  }

  .textoDer_k9A2,
  .textoIzq_hJ63 {
    width: 100%;
  }

  .textoDer_k9A2 h2 {
    font-size: 20px;
  }

  .textoDer_k9A2 p,
  .textoIzq_hJ63 p {
    font-size: 14px;
  }

  .video-responsive {
    max-width: 100%;
  }

  .imagenCentro_k9A2 {
    text-align: center;
    margin-bottom: 20px;
    padding: 10px 0;
  }

  .bloquePrincipal_k9A2 {
    padding: 10px 20px;
  }

  
.img23{
  width: 150px;
}

}

/* ================= 📱 CELULARES CHICOS ================= */
@media (max-width: 480px) {

  .bloquePrincipal_k9A2,
  .bloqueSecundario_hJ63 {
    padding: 10px;
  }

  .imagenIzq_k9A2 img,
  .imagenDer_hJ63 img {
    width: 100%;
  }

  .textoDer_k9A2 h2 {
    font-size: 18px;
  }

  .textoDer_k9A2 p,
  .textoIzq_hJ63 p {
    font-size: 13px;
    line-height: 1.4;
  }
}
.contenedorLogo {
  display: flex;
  justify-content: center; /* Centra horizontalmente */
  align-items: center;     /* Centra verticalmente */
  min-height: 50px;       /* Ajustá la altura mínima del bloque */
}

.contenedorLogo img {
  max-width: 150px; /* opcional: controla el tamaño */
}

.logo-d {
    text-align: center;
}

.since {
     margin-top: 8px;
    font-size: 20px;
    color: #1e88c8;
    letter-spacing: 3px;
    font-weight: bold;
    font-family: 'BAHNSCHRIFT', sans-serif;
}


.bloque-foto {
  display: flex;
  justify-content: center; /* centra la imagen */
  margin: 20px 0;
}

.bloque-foto img {
  width: 100%;       /* se adapta al ancho del contenedor */
  max-width: 950px;  /* nunca supera este tamaño */
  height: auto;      /* mantiene proporción */
}

.bloque-foto1 img {
  display: block;        /* clave */
  margin: 0 auto 40px;   /* centra horizontal + espacio abajo */
  width: 100%;
  max-width: 500px;
  height: auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.galeria-empresa12 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "foto1 foto3"
    "foto2 foto2";
  gap: 90px;
  max-width: 800px;
  margin: 0 auto;
}

.foto-1 {
  grid-area: foto1;
}

.foto-3 {
  grid-area: foto3;
  box-shadow: 20px 20px 20px 20px rgba(0,0,0,0.2);
}

.foto-2 {
  grid-area: foto2;
  
}

.foto1 img {
  width: 100%;
  height: auto;
  
}




.foto {
  display: flex;
  justify-content: center;
}

.foto img {
  width: 50vw;
  max-width: 600px; /* opcional */
  height: auto;
}

.foto-empresa {
  width: 960px;      /* ajustá al mismo ancho que la otra */
  box-shadow: 0 4px 20px rgba(0,0,0,0.2); /* opcional: efecto de foto */
}

.galeria-empresa {
  display: flex;
  justify-content: center;
  align-items: flex-end; /* mantiene las de los costados abajo */
  gap: 100px; /* espacio entre imágenes */
}

.foto-galeria {
  width: 250px;
  height: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  flex-shrink: 0; /* 👈 evita que se achiquen */
}

.foto-galeria1 {
  width: 370px;  /* la del medio más grande */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  align-self: center;
  flex-shrink: 0; /* 👈 tampoco se achica */
}

/* --- Responsive --- */

 @media (max-width: 768px) {
  .galeria-empresa12 {
    grid-template-columns: 1fr; /* una sola columna */
    grid-template-areas:
      "foto1"
      "foto3"
      "foto2";
    gap: 40px; /* menos espacio */
    padding: 20px;
  }

  .foto1 img,
  .foto img {
    width: 90%;  /* más grandes en móvil */
    max-width: 400px;
    margin: 0 auto;
    display: block;
    
  
}

 .foto-3 {
    box-shadow: 5px 5px 10px rgba(0,0,0,0.15);
  }
}



.lista-correas {
  list-style: none;   /* saca los puntitos */
  padding-left: 0;    /* elimina la sangría izquierda */
  margin: 0;          /* asegura que quede alineado al borde */
}