html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', sans-serif;
  color: #222;
  line-height: 1.6;
  font-size: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* Estandarizar todos los párrafos */
p, li, ul, ol {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 1rem;
  line-height: 1.7;
  color: #222;
  text-align: justify;
  letter-spacing: 0.3px;
}

/* También aplica a textos dentro de tarjetas u otros bloques */
.servicios-contenido p,
.servicio-bloque p,
.info-cards .card p,
.nosotros-texto p,
.productos-texto p,
.footer-col p {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 1rem;
  color: #222;
  line-height: 1.7;
  text-align: justify;
}


.top-bar {
  width: 100vw;
  background: #222;   /* Siempre oscuro */
  color: #fff;
  padding: 0.5rem 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  border-bottom: none;
  height: 48px;
  box-sizing: border-box;
  transition: background 0.3s;
}
.top-bar:hover,
.top-bar:focus-within {
  background: #222;   /* Mantiene el color oscuro en hover/focus */
}
.top-bar-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
    flex-wrap: wrap;
  flex-direction: row;
  gap: 1rem;
}
@media (max-width: 700px) {
  .top-bar-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1rem;
    gap: 0.5rem;
  }
  .top-bar-menu {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }
}
.top-bar-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.top-bar-menu li {
  display: inline;
}
.top-bar-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.top-bar-menu a:hover,
.top-bar-menu a:focus {
  color: #ffd700;
}

/* Menú principal blanco */
.main-menu-logo {
  height: 38px;
  vertical-align: middle;
  margin-right: 2rem;
}

.logo-texto {
  text-decoration: none;
   font-family: 'Anton', 'Oswald', 'Impact', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  background-color: #000;
  padding: 10px 20px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  height: 100%;
}
.logo-texto:hover {
  background-color: #111;
  color: #ffd700; /* un efecto de hover visible */
}


.main-menu {
  width: 100vw;
  background: transparent;
  position: fixed;
  top: 48px;
  left: 0;
  z-index: 101;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  height: 60px; /* <- AJUSTA AQUÍ según el alto de tu logo */
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
/*
#contenido {
  padding-top: 120px; 
}
*/

@media (max-width: 700px) {
  .main-menu ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1rem;
    gap: 0.5rem;
    height: auto;
    flex: 1;
  }
  .main-menu li {
    margin-right: 0;
    width: 100%;
  }
}
.main-menu:hover,
.main-menu:focus-within {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  height: 100%; /* ← usa el 100% de la altura del contenedor */
}

.main-menu li {
  margin-right: 2rem;
  position: relative;
}
.main-menu li:last-child {
  margin-right: 0;
}
.main-menu a {
background: transparent;
  transition: background 0.2s, color 0.2s;
  color: #222;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  transition: background 0.2s, color 0.2s;
  border-radius: 6px 6px 0 0;
  display: block;
}

/* Efecto hover: cubre parte de la imagen de fondo */
.main-menu a:hover,
.main-menu a:focus {
  background: linear-gradient(90deg, #2f373e, #2d3335);
  color: #fff;
  font-weight: 700;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.carousel {
  position: relative;
  width: 100vw;
  height: 100vh;
  
}
.carousel-slide {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}
.carousel-caption {
  position: absolute;
  max-width: 80vw;
}

.carousel-caption.center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.carousel-caption.bottom-right {
  bottom: 5%;
  right: 5%;
  left: auto;
  top: auto;
  transform: none;
  text-align: right;
}

.carousel-caption.bottom-left {
  bottom: 5%;
  left: 5%;
  right: auto;
  top: auto;
  transform: none;
  text-align: left;
}

.carousel-caption.bottom-right h1.carousel-title {
  font-size: 2.7rem;
  font-weight: 900;
  color: #fff; /* Blanco */
  font-family: 'Oswald', 'Impact', 'Arial Black', Arial, sans-serif; /* Letras llamativas */
  margin-bottom: 1rem;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.carousel-caption.bottom-left h1.carousel-title {
  font-size: 2.7rem;
  font-weight: 900;
  color: #fff; /* Blanco */
  font-family: 'Oswald', 'Impact', 'Arial Black', Arial, sans-serif; /* Letras llamativas */
  margin-bottom: 1rem;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.carousel-caption.bottom-left p.carousel-desc {
  font-family: 'Lora', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: #f0f0f0;
  line-height: 1.8;
  letter-spacing: 0.3px;
  max-width: 700px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  margin: 0;
}

.carousel-caption.bottom-right p.carousel-desc {
  font-family: 'Lora', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: #f0f0f0;
  line-height: 1.8;
  letter-spacing: 0.3px;
  max-width: 700px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  margin: 0;
}


.carousel-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10; /* Asegura que los dots estén siempre visibles */
}
.carousel-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.5;
  cursor: pointer;
  border: 2px solid #333;
  transition: opacity 0.3s, background 0.3s;
}
.carousel-dot.active {
  opacity: 1;
  background: #fff;
  border-color: #fff;
}
.carousel, .carousel-slide {
  min-width: 100vw;
  min-height: 100vh;
  width: 100vw;
  height: 100vh;
}

.carousel-caption,
.carousel-caption h1,
.carousel-caption p {
  color: #fff;
}

/* Botón scroll down */
.scroll-down-btn {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 20;
  background: transparent;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: none;
  outline: none;
  animation: bounce 1.5s infinite;
}
.scroll-down-btn:hover {
  background: rgba(255,255,255,0.12);
  color: #0072ce;
  transform: translateY(4px) scale(1.08);
}
@keyframes bounce {
  0%, 100% { transform: translateY(0);}
  50% { transform: translateY(10px);}
}
.scroll-down-icon {
  display: block;
  line-height: 1;
}

/* Botón scroll up */
.scroll-up-btn {
  position: fixed;
  bottom: 32px;
  right: 40px;
  z-index: 30;
  background: transparent;
  color: #0072ce;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: none;
  outline: none;
}
.scroll-up-btn.show {
  display: flex;
}
.scroll-up-btn:hover {
  background: rgba(0,114,206,0.12);
  color: #222;
  transform: translateY(-4px) scale(1.08);
}

/* Footer */
.site-footer {
  background: #003366;
  color: #fff;
  padding: 40px 0 20px 0;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif !important;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
@media (max-width: 700px) {
  .footer-container {
    padding: 0 1rem;
    gap: 10px;
  }
  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  .footer-logo img {
    height: 32px;
  }
}
.footer-logo img {
  height: 40px;
  margin-bottom: 10px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #ffd700;
  text-decoration: underline;
}
.footer-copy {
  margin-top: 10px;
  font-size: 0.95rem;
  opacity: 0.8;
  text-align: center;
}
.footer-logo-texto {
  font-family: 'Titillium Web','Anton', 'Oswald', 'Impact', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  background-color: #111; /* coincide con fondo del footer */
  padding: 10px 20px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
  display: inline-block;
}



 /* Mision y Vision  */
.mision-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 2rem 40px 2rem;
  align-items: center;
}

.mv-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
}

.mv-mision-texto {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}
.mv-mision-img {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  align-items: center;
}
.mv-vision-img {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  align-items: center;
}
.mv-vision-texto {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.mv-img {
  width: 100%;
  max-width: 260px;
  max-height: 160px;      /* Limita el alto de la imagen */
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  object-fit: cover;      /* Mantiene la proporción y recorta si es necesario */
  margin: 0 auto;
  display: block;
}

@media (max-width: 900px) {
  .mision-vision-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 1.5rem;
  }
  .mv-mision-texto,
  .mv-mision-img,
  .mv-vision-img,
  .mv-vision-texto {
    grid-column: 1 / 2 !important;
    grid-row: auto !important;
  }
  .mv-img {
    max-width: 100%;
  }
}
/* === INICIO DE NOSOTROS limpio y compacto === */
.nosotros-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 20px 30px 20px; /* top compensando menús fijos */
  font-family: 'Lora', serif;
  color: #222;
  display: flex;
  flex-direction: column;
  gap: 20px; /* separación controlada entre galería y texto */
}

/* Galería */
.nosotros-galeria {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
  justify-items: center;
}

.nosotros-galeria img {
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.nosotros-galeria img:hover {
  transform: scale(1.05);
}

/* Texto */
.nosotros-texto {
  padding: 0 10px;
  margin: 0;
}

.nosotros-texto h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #003366;
  font-family: 'Oswald', 'Impact', 'Arial Black', sans-serif;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.nosotros-texto p {
  margin: 8px 0;
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: justify;
  letter-spacing: 0.2px;
}

/* Imagen del logo opcional */
.nosotros-img-container img {
  display: block;
  margin: 0 auto 20px auto;
  max-width: 220px;
  height: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .nosotros-galeria {
    grid-template-columns: repeat(2, 1fr);
  }

  .nosotros-section {
    padding: 90px 16px 24px 16px;
  }

  .nosotros-texto h2 {
    font-size: 2rem;
  }
}

@media (max-width: 500px) {
  .nosotros-galeria {
    grid-template-columns: 1fr;
  }

  .nosotros-texto h2 {
    font-size: 1.8rem;
  }
}
/* === FIN DE NOSOTROS === */


/* === INICIO SECCIÓN SERVICIOS === */
.servicios-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 20px 40px 20px;
  font-family: 'Lora', serif;
  color: #222;
}

#contenido {
  padding-top: 110px; /* o más si hace falta */
  
}

.servicios-contenido {
  padding: 0 12px;
}

.servicios-contenido h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #003366;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Oswald', 'Impact', 'Arial Black', sans-serif;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.servicios-contenido p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 14px;
  text-align: justify;
  letter-spacing: 0.3px;
}

.servicios-lista {
  margin: 16px 0 0 20px;
  padding: 0;
  list-style-type: disc;
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: left;
}
/* Imágenes de la sección Servicios */
.servicios-galeria {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
  justify-items: center;
  padding: 0 10px;
}

.servicios-galeria img {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 3; /* Mantiene proporción estable */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.servicios-galeria img:hover {
  transform: scale(1.03);
}

/* === INICIO SECCIÓN SERVICIOS DESTACADOS === */
.servicios-destacados {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Tarjeta de cada servicio */
.servicio-bloque {
  background-color: #f9f9f9;
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.servicio-bloque h2 {
  color: #0077b6;
  margin-bottom: 0.5rem;
}

.servicio-bloque p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Contenedor de imágenes en grilla */
.imagenes-servicio {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Dos columnas */
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.imagenes-servicio img {
  width: 100%;
  max-width: 100%;
  height: 220px; /* altura general */
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.imagenes-servicio img:nth-child(3) {
  grid-column: 1 / -1;
  height: 280px; /* imagen central más alta */
}



/* Hover */
.imagenes-servicio img:hover {
  transform: scale(1.04);
}


/* === FIN SECCIÓN SERVICIOS DESTACADOS === */



/* === INICIO PRODUCTOS === */
.productos-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 140px 20px 40px 20px; /* ↑ Espaciado superior corregido */
  font-family: 'Lora', serif;
  color: #222;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.productos-texto p {
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: justify;
  letter-spacing: 0.3px;
  margin: 0;
}

.productos-categoria h3 {
  font-family: 'Oswald', sans-serif;
  color: #003366;
  font-size: 1.6rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.productos-galeria {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  justify-items: center;
  padding: 0 10px;
}

.productos-galeria img {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.productos-galeria img:hover {
  transform: scal
}
.productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  padding: 10px 0;
}

.productos-grid img {
  width: 50%; /* Mitad del tamaño anterior */
  max-width: 160px; /* Limita el tamaño en pantallas grandes */
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.productos-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.productos-categoria {
  margin-bottom: 50px;
}

.productos-categoria h3 {
  text-align: center;
  font-size: 1.8rem;
  font-family: 'Oswald', sans-serif;
  color: #003366;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* === FIN PRODUCTOS === */

/*index.html*/
/* === TARJETAS DE INFORMACIÓN (Qué Hacemos, Misión, Visión, Quiénes Somos) === */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 100px 2rem 60px 2rem;
  background: #f4f8fb;
  max-width: 1200px;
  margin: 0 auto;
}

.info-cards .card {
  background: #fff;
  border-left: 5px solid #0072ce;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 1.8rem;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.info-cards .card:hover {
  transform: translateY(-6px);
}

.info-cards .card h2 {
  font-family: 'Oswald', sans-serif;
  color: #003366;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-cards .card p {
  font-family: 'Lora', serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}

/* === FOOTER === */
.site-footer {
  background-color: #002244;
  color: #fff;
  padding: 60px 20px 30px 20px;
  font-family: 'Lora', serif;
  font-size: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 20px auto;
}

.footer-col h3 {
  color: #ffd700;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}


.footer-col p,
.footer-col a {
  font-size: 0.95rem;
  color: #eee;
  line-height: 1.6;
  text-decoration: none;
  display: block;
  margin-bottom: 0.4rem;
}

.footer-col a:hover {
  color: #ffd700;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.75;
  margin-top: 30px;
}
.footer-divider {
  border: none;
  border-top: 1px solid #aaa;
  margin: 20px 0;
  width: 100%;
}

.email-line {
  font-size: 0.9rem;
  white-space: nowrap;
}

/*Fin de Footer*/

/* Marcas del INdex.html */
.marcas-section {
  background-color: #ffffff;
  padding: 4rem 2rem;
  overflow: hidden;
}

.marcas-titulo {
  font-family: 'Anton', 'Impact', 'Arial Black', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #222;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.marcas-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 0 2rem;
}

.marcas-grid img {
  height: auto;
  max-height: 80px;
  max-width: 100%;
  object-fit: contain;
  flex: 1 1 20%;
  transition: transform 0.3s ease;
}

.marcas-grid img:hover {
  transform: scale(1.1);
}
.marca-grande {
  transform: scale(2);
  transform-origin: center;
}

.marca-chica {
  transform: scale(0.5);
  transform-origin: center;
}
.marcas-carrusel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marcas-slide-track {
  display: flex;
  width: calc(250px * 22); /* 11 imgs * 2 (duplicadas) */
  animation: scroll-marcas 30s linear infinite;
}

.marcas-slide-track img {
  width: 250px;
  height: 80px;
  object-fit: contain;
  padding: 0 20px;
  transition: transform 0.3s ease;
}

.marcas-slide-track img:hover {
  transform: scale(1.1);
}

@keyframes scroll-marcas {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marcas-titulo-impacto {
  font-family: 'Anton', 'Impact', 'Arial Black', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #0d47a1; /* Azul oscuro, puedes cambiarlo si deseas */
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Fin de MARCAS en el INDEX.html */

/* === Nuestros Clientes === */
.clientes-section {
  background-color: #ffffff;
  padding: 2rem 1rem;
  text-align: center;
}

.clientes-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-family: 'Oswald', sans-serif;
  color: #333;
}

.clientes-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem; /* Espaciado entre todos, menos el primero */
}

/* Todos los logos */
.clientes-logos img {
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  margin: 0;
}

/* === Primer logo (grande y más cercano al 2do) === */
.clientes-logos img:first-child {
  max-width: 380px;   /* Más grande */
  margin-right: -7rem; /* Acercar solo al segundo logo */
}

/* === Último logo (más pequeño para evitar pixelado) === */
.clientes-logos img:last-child {
  max-width: 180px;
}

/* Hover efecto */
.clientes-logos img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}
/* === Fin Nuestros Clientes === */
