/* Reset y estilo general */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Logo y visión */
.hero-nuevo {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.hero-nuevo .hero-bg {
    width: 100%;
    display: block;
    object-fit: cover;
    height: auto;
}
.producto-contenido {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  flex-direction: row-reverse; /* mantiene imagen a la derecha */
  align-items: flex-start;
}

.hero-contenido {
    position: absolute;
    top: 0;
    left: 0;
    padding: 30px 40px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.45);
    color: white;
    box-sizing: border-box;
}

.logo-vision {
    max-width: 45%;
}

.logo-vision .logo {
    height: 120px;
}

.vision-header {
  font-family: 'Lora', serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
  font-size: 1em;
  font-weight: 500;
  text-align: center;
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
  z-index: 10;
}

.mensaje-contacto {
    max-width: 50%;
    font-size: 1em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.mensaje-contacto h1 {
    color: #8BC34A;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.mensaje-contacto ul {
    list-style: none;
    padding: 0;
    font-size: 1em;
}

.mensaje-contacto li {
    margin-bottom: 5px;
}

.mensaje-contacto .contacto-linea {
    color: #AED581;
    font-size: 1em;
}
/* Menú sobre el borde inferior del header */
.nav-wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
}

.nav-menu {
    background-color: #004d80;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px 0;
    margin: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ffcc00;
}

/* Secciones de contenido */
section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    background-color: white;
    margin-top: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

section h2, section h3 {
    color: #004d80;
    margin-bottom: 10px;
}

section p {
    line-height: 1.6;
}

/* Imágenes interiores */
.imagenes img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 20px auto;
}

/* Logos de representación */
.representamos {
    text-align: center;
}

.representamos img {
    height: 80px;
    margin: 10px;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    max-width: 400px;
    margin-top: 10px;
}

.contacto-linea {
    display: flex;
    align-items: center;
    gap: 10px;
    color: gold;
    font-size: 10px;
}

.contacto-linea a {
    color: white;
    text-decoration: none;
    font-size: 12px;
}

.contacto-linea a:hover {
    text-decoration: none;
    color: gold;
}

.entrega-maquina {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 20px;
    gap: 40px;
    flex-wrap: wrap;
    background-color: #f5f5f5;
}

.texto-entrega {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.imagen-maquina {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.imagen-maquina img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    padding: 40px 20px;
    background-color: #ffffff;
}

.info-item {
    background-color: #ffffff;
    padding: 10px;
}

.info-icon {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
    text-align: center;
}
.info-balanceada {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 20px auto;
    background-color: white;
    flex-wrap: wrap;
}

.info-textos {
    flex: 2;
    min-width: 300px;
}

.image-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    min-width: 250px;
}

.image-column img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.logo-badinotti {
    height: 100px; /* más chico */
}

.logo-moscuzza {
    height: 10px; /* más grande */
}

.representamos img.logo-badinotti {
    height: 90px !important;
}

.representamos img.logo-moscuzza {
    height: 50px !important; /* o 10px si estás probando el cambio visual */
}
@media (max-width: 768px) {
  .hero-contenido {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
    background: none; /* Elimina el fondo oscuro en móvil */
  }

  .logo-vision {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .logo-vision .logo {
    height: 70px; /* Logo más pequeño */
  }

  .mensaje-contacto {
    display: none; /* Oculta "Somos fabricantes..." */
  }

  .vision-header {
    display: none; /* Oculta la visión */
  }

  .contacto-linea {
    display: none; /* Oculta los contactos */
  }

  .nav-wrapper {
    position: static; /* Menú ya no flotante */
    width: 100%;
    margin-top: 10px;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .nav-menu a {
    padding: 8px;
    font-size: 1em;
  }
}

.quienes-somos {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 20px auto;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.qs-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.qs-texto {
  flex: 2;
  min-width: 300px;
}

.qs-texto h2 {
  color: #004d80;
  margin-bottom: 10px;
}

.qs-texto h3 {
  color: #004d80;
  margin-top: 20px;
  margin-bottom: 5px;
}

.qs-texto p {
  line-height: 1.6;
}

.qs-video {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.qs-video img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.qs-video img:hover {
  transform: scale(1.05);
}
.equipo {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.equipo h2 {
    text-align: center;
    color: #004d80;
    margin-bottom: 30px;
}

.equipo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    justify-items: center;
}

.equipo-miembro {
    text-align: center;
}

.equipo-miembro img {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.equipo-miembro h3 {
    margin: 10px 0 5px;
    color: #004d80;
}

.equipo-miembro p {
    margin: 4px 0;
}

.mensaje-contacto a {
    color: inherit;
    text-decoration: none;
}

.info-item .info-icon,
.info-item h2 {
    text-align: center;
}

.contacto {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contacto-bloque {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.contacto-bloque h2 {
  color: #004d80;
  margin-bottom: 10px;
}

.contacto-bloque p {
  margin: 6px 0;
}

.contacto-bloque a {
  color: #333;
  text-decoration: none;
}

.contacto-bloque a:hover {
  text-decoration: underline;
}

.formas-pago h3 {
  margin-bottom: 10px;
  color: #004d80;
}

.formas-pago ul {
  list-style: none;
  padding: 0;
}

.formas-pago li {
  margin: 5px 0;
}

.mapa {
  max-width: 700px;
}

.contacto-datos-mapa {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.contacto-info {
  flex: 1 1 300px;
}

.mapa {
  flex: 1 1 300px;
}

.formas-pago {
  margin-top: 10px;
}

.noticias {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.noticia {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 20px;
  border-radius: 8px;
}

.noticia-texto {
  flex: 2;
  min-width: 300px;
}

.noticia-imagenes {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.noticia-imagenes img {
  width: 100%;
  border-radius: 6px;
}

/* Introducción Productos */
.productos-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 20px auto;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.productos-texto {
  flex: 2;
  min-width: 300px;
}

.productos-tabla ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.productos-tabla li {
  margin: 8px 0;
}

.productos-tabla a {
  text-decoration: none;
  color: #004d80;
  font-weight: bold;
}

.productos-tabla a:hover {
  text-decoration: underline;
}

/* Producto Detalle */
.producto-detalle {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.producto-detalle h2 {
  color: #004d80;
  margin-bottom: 20px;
}

.producto-texto {
  flex: 2;
  min-width: 300px;
}

.producto-imagen {
  flex: 1;
  min-width: 250px;
}

.producto-imagen img {
  width: 100%;
  border-radius: 6px;
}

.producto-tabla {
  margin-top: 20px;
}

.producto-tabla table {
  width: 100%;
  border-collapse: collapse;
}
.productos-menu ul {
  list-style: none;
  padding-left: 0;
}

.productos-menu ul li {
  margin-bottom: 8px;
}

.productos-menu ul li > ul {
  margin-top: 4px;
  margin-left: 20px;
}

.productos-menu a {
  color: #004d80;
  text-decoration: none;
}

.productos-menu a:hover {
  text-decoration: underline;
}

/* Ajuste tabla detalle producto más ancha y letra más pequeña */
.producto-tabla table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9em; /* achica la letra */
}

.producto-tabla th,
.producto-tabla td {
  text-align: left;
  padding: 8px;
  border: 1px solid #ddd;
  vertical-align: top;
}

.productos-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 20px auto;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.intro-texto {
  flex: 1.2;
  min-width: 300px;
}

.productos-tabla {
  flex: 1.5;
  min-width: 300px;
  background: #e0f0ff;
  padding: 20px;
  border-radius: 8px;
  font-size: 0.80em;
  margin-left: 100px;
  border: 1px solid #b0d4ee;
}

.productos-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.productos-lista > li {
  margin-bottom: 10px;
  font-weight: bold;
}

.productos-lista li ul {
  list-style: disc;
  margin-left: 50px;
  margin-top: 5px;
}

.productos-lista li ul li {
  font-weight: normal;
}

.productos-lista a {
  color: #004d80;
  text-decoration: none;
}

.productos-lista a:hover {
  text-decoration: underline;
}

.producto-detalle {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 20px auto;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.producto-texto {
  flex: 2;
  min-width: 300px;
}

.producto-texto h2 {
  color: #004d80;
  margin-bottom: 15px;
}

.producto-texto p {
  line-height: 1.6;
  margin-bottom: 10px;
}

.producto-imagen {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.producto-imagen img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.nota-tabla {
  font-size: 0.85em;
  margin-top: 10px;
  color: #333;
}

.producto-imagen-multiple {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
  margin-top: 10px;
}

.producto-imagen-multiple img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid #ddd;
  border-radius: 4px;
}

