/* VALUETIFY SAS — réplica estática de valuetify.com */
:root {
  --gris-oscuro: #47535a;
  --negro: #000000;
  --carbon: #353e44;
  --carbon-2: #343a40;
  --gris-claro: #e6e6e6;
  --blanco: #ffffff;
  --texto: #131719;
  --fuente: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--fuente); color: var(--texto); background: var(--blanco); line-height: 1.6; }
img { max-width: 100%; }
a { text-decoration: none; color: inherit; }

.contenedor { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* Barra superior */
.barra-superior {
  background: var(--gris-oscuro);
  color: var(--blanco);
  font-size: 0.85rem;
  padding: 10px 0;
}
.barra-superior .contenedor {
  display: flex; justify-content: space-between; align-items: center; max-width: 1500px;
}
.barra-superior a { color: var(--blanco); margin-right: 22px; opacity: 0.95; }
.barra-superior a:hover { opacity: 1; text-decoration: underline; }
.redes a { margin: 0 8px; opacity: 0.7; font-size: 0.95rem; }
.redes a:hover { opacity: 1; }

/* Navegación */
.navegacion { background: var(--negro); color: var(--blanco); position: sticky; top: 0; z-index: 100; }
.navegacion .contenedor {
  max-width: 1500px; display: flex; align-items: center; gap: 28px; padding: 14px 24px;
}
.logo img { height: 56px; display: block; }
.menu { display: flex; gap: 26px; list-style: none; align-items: center; }
.menu a { color: #bbb; font-size: 1.02rem; letter-spacing: 0.02em; }
.menu a:hover, .menu a.activo { color: var(--blanco); }
.carrito-badge {
  background: #6c757d; color: #fff; font-size: 0.65rem; padding: 1px 6px;
  border-radius: 3px; vertical-align: super;
}
.nav-derecha { margin-left: auto; display: flex; align-items: center; gap: 24px; }
.boton {
  display: inline-block; background: #6c757d; color: var(--blanco);
  padding: 12px 30px; border-radius: 30px; border: none; cursor: pointer;
  font-family: inherit; font-size: 1rem; transition: background 0.2s;
}
.boton:hover { background: #5a6268; }
.boton-claro { background: rgba(255,255,255,0.25); backdrop-filter: blur(4px); }
.boton-claro:hover { background: rgba(255,255,255,0.4); }

/* Héroe */
.heroe {
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url("../img/hero.jpg") center/cover fixed;
  color: var(--blanco); text-align: center; padding: 140px 24px 180px;
}
.heroe h1 { font-size: 3.6rem; line-height: 1.15; font-weight: 700; margin-bottom: 28px; }
.heroe p { max-width: 900px; margin: 0 auto 36px; font-size: 1.1rem; }

/* Héroe interior (páginas secundarias) */
.heroe-interior {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("../img/hero.jpg") center/cover;
  color: var(--blanco); text-align: center; padding: 80px 24px;
}
.heroe-interior h1 { font-size: 3.2rem; font-weight: 700; }

/* Servicios */
.servicios { background: var(--negro); color: var(--blanco); padding: 64px 0; }
.lista-servicios {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 60px;
  max-width: 1000px; margin: 0 auto;
}
.servicio { display: flex; align-items: center; gap: 16px; font-size: 1.15rem; }
.servicio .icono {
  width: 52px; height: 52px; flex-shrink: 0; border-radius: 50%;
  background: var(--carbon); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}

/* Sección potencial */
.potencial { background: var(--negro); color: var(--blanco); text-align: center; padding: 80px 24px; }
.potencial h2 { font-size: 2.6rem; line-height: 1.2; margin-bottom: 24px; }
.potencial p { max-width: 700px; margin: 0 auto 32px; }

/* Clientes */
.clientes { background: #131719; color: var(--blanco); padding: 64px 0; text-align: center; }
.clientes h2 { font-size: 2.2rem; margin-bottom: 48px; }
.lista-clientes { display: flex; justify-content: center; flex-wrap: wrap; gap: 60px; }
.cliente { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.cliente .logo-cliente {
  width: 110px; height: 110px; border-radius: 50%; background: var(--carbon);
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
  overflow: hidden;
}
.cliente .logo-cliente img { width: 100%; height: 100%; object-fit: cover; }
.cliente span { font-size: 1.05rem; }

/* Bloques texto-imagen */
.bloque { padding: 64px 0; background: var(--blanco); color: var(--texto); }
.bloque .contenedor { display: flex; align-items: center; gap: 60px; }
.bloque.invertido .contenedor { flex-direction: row-reverse; }
.bloque h2 { font-size: 2.4rem; line-height: 1.2; margin-bottom: 20px; }
.bloque p { margin-bottom: 24px; color: #444; }
.bloque .mitad { flex: 1; }
.bloque .mitad img { border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }

/* Llamado a la acción */
.cta { background: var(--carbon-2); color: var(--blanco); text-align: center; padding: 72px 24px; }
.cta h2 { font-size: 2.2rem; line-height: 1.3; margin-bottom: 16px; }
.cta p { margin-bottom: 28px; }

/* Mapa */
.mapa iframe { display: block; width: 100%; height: 420px; border: 0; }

/* Sobre nosotros */
.fondo-gris { background: var(--gris-claro); padding: 80px 0; }
.tarjetas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: center; }
.tarjeta {
  background: #fafafa; padding: 40px 32px; box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  text-align: justify;
}
.tarjeta.destacada { padding: 52px 36px; }
.tarjeta h3 { font-size: 2rem; text-align: center; margin-bottom: 18px; }

/* Contacto */
.contacto { background: var(--gris-claro); padding: 64px 0; }
.contacto .contenedor { display: flex; gap: 60px; }
.formulario { flex: 2; }
.formulario p.introduccion { margin-bottom: 32px; }
.campo { display: flex; align-items: flex-start; margin-bottom: 24px; gap: 20px; }
.campo label { width: 200px; font-weight: 600; padding-top: 10px; }
.campo label .req { color: #c00; }
.campo input, .campo textarea {
  flex: 1; padding: 12px 14px; border: 1px solid #ccc; border-radius: 4px;
  font-family: inherit; font-size: 1rem; background: var(--blanco);
}
.campo textarea { min-height: 140px; resize: vertical; }
.info-contacto { flex: 1; }
.info-contacto h3 { margin-bottom: 16px; }
.info-contacto p { margin-bottom: 12px; display: flex; gap: 10px; align-items: baseline; }

/* Pie de página */
.pie { background: var(--blanco); border-top: 1px solid #eee; padding: 40px 0 24px; }
.pie .contenedor { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px; }
.pie h4 { margin-bottom: 12px; }
.pie ul { list-style: none; }
.pie li { margin-bottom: 8px; }
.pie a:hover { text-decoration: underline; }
.derechos { text-align: center; font-size: 0.85rem; color: #777; margin-top: 32px; }

@media (max-width: 900px) {
  .heroe h1 { font-size: 2.4rem; }
  .heroe-interior h1 { font-size: 2.2rem; }
  .lista-servicios { grid-template-columns: 1fr 1fr; }
  .tarjetas { grid-template-columns: 1fr; }
  .bloque .contenedor, .bloque.invertido .contenedor { flex-direction: column; }
  .contacto .contenedor { flex-direction: column; }
  .campo { flex-direction: column; gap: 6px; }
  .campo label { width: auto; padding-top: 0; }
  .menu { display: none; }
}
@media (max-width: 600px) {
  .lista-servicios { grid-template-columns: 1fr; }
  .barra-superior .contenedor { flex-direction: column; gap: 6px; }
}
