:root {
  --blue     : #1a3fff;
  --blue-dark: #0a1aaa;
  --black    : #000000;
  --dark     : #111113;
  --dark2    : #1a1a1e;
  --gray     : #2a2a30;
  --white    : #ffffff;
  --muted    : rgba(255,255,255,0.62);
  --font     : 'Inter', sans-serif;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html  { scroll-behavior:smooth; }
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
}

body { font-family:var(--font); background:var(--black); color:var(--white); overflow-x:hidden; }
body.no-scroll { overflow: hidden; }
img, video { display:block; max-width:100%; height:auto; }
a    { text-decoration:none; color:inherit; }
ul   { list-style:none; }

.btn-blue {
  display:inline-block; background: #1a3fff; color:var(--white);
  padding:16px 38px; border-radius:50px; font-size:14px; font-weight:600;
  border:none; cursor:pointer; 
  box-shadow: 0 0 25px rgba(26, 63, 255, 0.5);
  transition:transform .2s, box-shadow .2s;
  text-decoration: none;
}
.btn-blue:hover { 
  transform:scale(1.05); 
  box-shadow: 0 0 40px rgba(26, 63, 255, 0.8);
}

.eyebrow-spaced { font-size:11px; letter-spacing:3px; color:var(--muted); text-transform:uppercase; font-weight:400; }
.ico-center { display:block; margin:0 auto 28px; height:70px; width:auto; }
.ico-circle { height:100px; width: 100px; flex-shrink:0; }

/* ============================================================
   HEADER — TRANSPARENTE AL INICIO, DINAMICO AL SCROLL
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 90px;
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
  background: transparent; /* Transparente al inicio */
}

/* Estado cuando se hace scroll down */
.site-header.scrolled {
  height: 70px;
  background: rgba(0, 0, 0, 0.8); /* Fondo sutil al bajar */
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.header-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2000;
  padding: 0;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: all 0.3s ease;
}

/* Animacion Hamburguesa */
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.logo img { 
  width: 160px; 
  height: auto; 
  display: block; 
  transition: width 0.3s ease;
}

.top-nav {
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.top-nav ul { 
  display: flex; 
  gap: 35px; 
}
.top-nav a { 
  font-size: 13px; 
  font-weight: 500; 
  color: #fff; 
  transition: opacity .2s; 
}
.top-nav a:hover { opacity: .7; }

/* Comportamiento al hacer scroll: ocultar navegación al bajar, mostrar al subir */
.site-header.scrolled.scroll-down .top-nav {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
}

.site-header.scrolled.scroll-up .top-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-header.scrolled .logo img {
  width: 130px;
}

/* ============================================================
   HERO — Ajustado para header transparente (sin margin-top)
   ============================================================ */
.hero-wrap {
  width: 100%;
  position: relative;
  margin-top: 0; 
}
.s-about-hero, .s-services-hero {
  margin-top: 0;
}

.hero {
  position: relative;
  width: 100%;
  height: 546px;
  overflow: hidden;
  background: #000;
}

@media (max-width: 1917px) {
  .hero {
    height: auto;
    aspect-ratio: 1917 / 546;
  }
}

.hero__bg-img,
.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translate(-50%, -50%);
  display: block;
  max-width: none !important;
}

.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.hero__content {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
}

.hero__text-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 80px;
}

.hero__text {
  max-width: 650px;
}
.hero__eyebrow { 
  display:block; 
  font-size:16px; 
  font-weight:700; 
  margin-bottom:12px; 
  color: #fff;
}
.hero__text h1 { 
  font-size:52px; /* Reducido para que no se corte */
  font-weight:800; 
  line-height:1.1; 
  letter-spacing:-1px; 
  margin-bottom:18px; 
  color: #fff;
}
.hero__desc { 
  font-size:17px; 
  color: rgba(255,255,255,0.85); 
  line-height:1.5; 
  margin-bottom:30px; 
  max-width:420px; 
}

.glow-bar {
  width: 100%;
  height: 40px;
  background: url('../recursos/gradiente%20fondo.png') no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 5;
  margin-top: -1px; /* Elimina la linea negra */
}

/* ── MANGUERAS ── */
.s-mangueras-text { background:var(--dark2); }
.s-mangueras-text__header { text-align:center; padding:90px 60px 70px; max-width:900px; margin:0 auto; }
.s-mangueras-text__header h2 { font-size:42px; font-weight:800; line-height:1.1; margin-bottom:20px; }
.s-mangueras-text__header p  { font-size:17px; color:var(--muted); line-height:1.7; max-width:700px; margin:0 auto; }

.s-mangueras-img { 
  position: relative; 
  width: 100%; 
  min-height: 600px; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  overflow: hidden;
}
.s-mangueras-img__bg {
  position: absolute; inset: 0; z-index: 0;
}
.s-mangueras-img__bg .full-bg {
  width: 100%; height: 100%; object-fit: cover;
}
.s-mangueras-img__content {
  position: relative; z-index: 10;
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 60px;
}
.mangueras-showcase {
  width: 100%;
  max-width: 953px; /* Tamaño solicitado */
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
  position: relative;
  z-index: 1;
}
.s-mangueras-img .btn-blue {
  position: relative;
  z-index: 20; /* Asegura que esté por delante de la imagen */
  margin-top: -50px; /* Ajuste para que flote sobre la base de la imagen */
}

/* ── TRAZABILIDAD ── */
.s-trazab { 
  display:flex; 
  min-height:540px; 
  background:var(--dark);
}
.s-trazab__foto { 
  flex: 1; 
  position:relative; 
  overflow:hidden; 
  display:flex; 
  align-items: center; 
  justify-content: center;
}
.s-trazab__bg-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.s-trazab__foto::after { content:''; position:absolute; inset:0; }
.s-trazab__text { 
  position:relative; 
  z-index:1; 
  padding: 45px 0px 45px 40px; /* Movido a la derecha */
  max-width: 700px;
}
.s-trazab__icon-row { display:flex; align-items:center; gap:14px; margin-bottom:18px; }
.s-trazab__text h2 { font-size:24px; font-weight:800; line-height:1.15; margin-bottom:18px; }
.s-trazab__text p  { font-size:15px; color:var(--muted); line-height:1.75; }

.s-trazab__phone { 
  flex: 0 0 420px; /* Ancho fijo para que el cuadro gris no crezca */
  background:var(--dark); 
  display:flex; 
  align-items:center; 
  justify-content: flex-start; /* Alineado a la izquierda del cuadro */
  padding: 40px 20px 40px 40px; 
}
.s-trazab__phone img { 
  max-height:480px; 
  width:auto; 
  filter:drop-shadow(0 20px 40px rgba(0,0,0,0.8)); 
}
.s-trazab__phone img { 
  max-height:480px; 
  width:auto; 
  filter:drop-shadow(0 20px 40px rgba(0,0,0,0.8)); 
}

/* ── SERVICIO AL CLIENTE ── */
.s-servicio { display:flex; min-height:380px; margin-bottom: 0; }
.s-servicio__left { flex:0 0 30%; background:var(--black); position:relative; overflow:hidden; display:flex; align-items:center; justify-content:center; }
.s-servicio__left img { width:100%; height:100%; object-fit:cover; }
.s-servicio__line { position:absolute; inset:0; background:radial-gradient(ellipse at 60% 50%, rgba(30,100,255,.35) 0%, transparent 70%); pointer-events:none; }
.s-servicio__right { flex:1; background:var(--gray); display:flex; flex-direction:column; justify-content:center; padding:60px 72px; }
.s-servicio__icon-row { display:flex; align-items:center; gap:14px; margin-bottom:20px; }
.s-servicio__right h2 { font-size:38px; font-weight:800; line-height:1.15; margin-bottom:18px; }
.s-servicio__right p  { font-size:15px; color:var(--muted); line-height:1.75; max-width:420px; }

/* ── QUIENES SOMOS ── */
.s-quienes { display:flex; min-height:420px; margin-top: 0; }
.s-quienes__left { flex:0 0 42%; background:var(--black); display:flex; flex-direction:column; justify-content:center; padding:60px 60px; align-items: flex-start; }
.s-quienes__icon-row { display:flex; align-items:center; gap:14px; margin-bottom:22px; }
.s-quienes__left h2 { font-size:38px; font-weight:800; line-height:1.15; margin-bottom:18px; }
.s-quienes__left p  { font-size:14px; color:var(--muted); line-height:1.75; max-width:360px; margin-bottom:30px; }
.s-quienes__left .btn-blue { 
  align-self: flex-start; 
  width: auto; 
  padding: 13px 30px; /* Padding reducido para evitar que se extienda */
}
.s-quienes__right   { flex:1; overflow:hidden; position:relative; }
.s-quienes__right img { width:100%; height:100%; object-fit:cover; }

/* ── ESPECIFICACIONES ── */
.s-specs { 
  position:relative; 
  padding:120px 60px; 
  text-align:center; 
  overflow:hidden; 
  background: #000;
}
.s-specs__bg { position:absolute; inset:0; z-index:0; }
.s-specs__bg img { width:100%; height:100%; object-fit:cover; opacity: 0.8; }

.s-specs__inner { 
  position:relative; 
  z-index:1; 
  max-width:1400px; 
  margin:0 auto; 
}
.s-specs__inner h2 { 
  font-size:32px; 
  font-weight:800; 
  letter-spacing:2px; 
  margin-bottom:80px; 
  color: #fff;
}

.specs-staggered { 
  position: relative;
  height: 600px; /* Aumentado de 500px para más espacio vertical */
  max-width: 1200px; /* Aumentado para más espacio horizontal */
  margin: 0 auto 80px;
}

.spec-card { 
  position: absolute;
  background: rgba(25, 25, 25, 0.9); 
  border: 1px solid rgba(255,255,255,0.08); 
  border-radius: 12px; 
  padding: 20px 24px; 
  display: flex; 
  align-items: flex-start; 
  gap: 15px; 
  text-align: left; 
  width: 300px; /* Ligeramente más anchas */
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}
.spec-card:hover { transform: translateY(-5px); }

.spec-card img { width: 55px; height: auto; flex-shrink: 0; margin-top: 2px; }
.spec-card h3  { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.spec-card p   { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* Posiciones más separadas y extremas */
.card-1 { left: 0%; bottom: 40px; }        /* Fuerza de trabajo (extremo abajo izq) */
.card-2 { left: 20%; top: 20px; }         /* Producción ISO (arriba centro-izq) */
.card-3 { right: 20%; bottom: 80px; }      /* Innovación (abajo centro-der) */
.card-4 { right: 0%; top: 0px; }           /* Distribución (extremo arriba der) */

.s-specs .btn-blue {
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .specs-staggered { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
    height: auto; 
  }
  .spec-card { 
    position: relative; 
    width: 100%; 
    left: auto; top: auto; right: auto; bottom: auto; 
  }
}

/* ── CLIENTES ── */
.s-clientes { position:relative; padding:60px 60px; text-align:center; overflow:hidden; }
.s-clientes__bg { position:absolute; inset:0; z-index:0; }
.s-clientes__bg img { width:100%; height:100%; object-fit:cover; }
.s-clientes__inner { position:relative; z-index:1; max-width:980px; margin:0 auto; }
.s-clientes__inner h2 { font-size:28px; font-weight:700; margin-bottom:36px; }
.s-clientes__logos { width:100%; margin:0 auto; }

/* ── CTA ── */
.s-cta { position:relative; padding:100px 60px; text-align:center; overflow:hidden; min-height:460px; display:flex; align-items:center; justify-content:center; }
.s-cta__bg { position:absolute; inset:0; z-index:0; }
.s-cta__bg img { width:100%; height:100%; object-fit:cover; }
.s-cta__overlay { position:absolute; inset:0; background:linear-gradient(180deg,rgba(0,0,10,.4) 0%,rgba(0,0,10,.65) 100%); }
.s-cta__inner { position:relative; z-index:1; max-width:720px; margin:0 auto; display:flex; flex-direction:column; align-items:center; gap:18px; }
.s-cta__inner h2 { font-size:36px; font-weight:700; line-height:1.3; }

/* ── FOOTER ── */
.site-footer { background:linear-gradient(180deg,#0a0e1a 0%,#060810 100%); padding:40px 60px 20px; }
.footer-nav  { display:flex; justify-content:space-between; align-items:center; padding-bottom:28px; }
.footer-nav__left, .footer-nav__right { display:flex; gap:32px; }
.footer-nav a { font-size:13px; color:var(--muted); transition:color .2s; }
.footer-nav a:hover { color:var(--white); }
.footer-line  { border:none; border-top:1px solid rgba(255,255,255,.12); margin-bottom:18px; }
.footer-bottom { display:flex; align-items:center; padding-bottom:10px; }
.footer-bottom p { font-size:11px; color:var(--muted); text-align:center; flex:1; }

/* ── PAGE HERO (Generic) ── */
.s-page-hero { padding:80px 60px; background:var(--black); text-align:center; }
.s-page-hero h1 { font-size:56px; font-weight:800; letter-spacing:-.5px; margin-bottom:16px; }
.s-page-hero p  { font-size:18px; color:var(--muted); line-height:1.65; }

/* ── ABOUT PAGE SPECIFIC (STRICT REPLICA) ── */
.s-about-top {
  position: relative;
  width: 100%;
  padding: 120px 0 160px;
  /* Fondo de horizonte: negro arriba, azul abajo con desvanecido */
  background: linear-gradient(to bottom, #000000 40%, #0a1aaa 100%);
  display: flex;
  justify-content: center;
  overflow: visible;
  z-index: 5;
}

/* Eliminamos el after con imagen de patron anterior */
.s-about-top::after { display: none; }

.about-top__inner {
  max-width: 1400px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 10;
}

.about-top__inner h1 {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 60px;
}

.about-images {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}

.img-main {
  position: relative;
  z-index: 5;
  width: 750px; 
  height: 360px; /* Altura reducida para forzar el recorte */
  overflow: hidden; 
  box-shadow: 0 40px 80px rgba(0,0,0,0.7);
  border-radius: 4px;
}
.img-main img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  object-position: center 35%; /* Centra el recorte en el equipo */
  display: block; 
}

.img-sub {
  position: absolute;
  bottom: -60px;
  right: -100px;
  z-index: 10;
  width: 350px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.8);
}
.img-sub img { width: 100%; height: auto; border-radius: 4px; display: block; }

.s-about-quienes {
  background: #000;
  padding: 120px 60px;
  position: relative;
  z-index: 1;
}

.s-about-quienes .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 100px;
  align-items: flex-start;
}

.quienes-left { flex: 0 0 300px; }
.quienes-left h2 { 
  font-size: 48px; 
  font-weight: 800; 
  line-height: 1.1; 
  color: #fff; 
}

.quienes-right { flex: 1; }
.quienes-right p { 
  font-size: 16px; 
  color: rgba(255,255,255,0.85); 
  line-height: 1.7; 
  margin-bottom: 25px; 
  max-width: 750px;
}

/* ── CONTACTO ── */
.s-contact { background:var(--black); padding:100px 60px; }
.s-contact .inner { 
  max-width: 1200px; 
  margin: 0 auto; 
  display: grid; 
  grid-template-columns: 1fr 1.2fr; 
  gap: 100px; 
  align-items: start; 
}
.contact-info { display: flex; flex-direction: column; gap: 30px; }
.contact-info h2 { font-size: 42px; font-weight: 800; margin-bottom: 10px; }
.info-block { display: flex; flex-direction: column; gap: 8px; }
.contact-label { font-size: 11px; letter-spacing: 2px; font-weight: 700; text-transform: uppercase; color: var(--blue); }
.contact-info p { font-size: 16px; color: var(--muted); line-height: 1.6; }
.contact-info a { color: var(--white); transition: opacity .2s; }
.contact-info a:hover { opacity: .6; }

.contact-form-wrap { background: var(--dark); padding: 40px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.05); }
.contact-form { display:flex; flex-direction:column; gap:18px; }
.form-row { display:flex; gap:18px; }
.contact-form input,
.contact-form textarea { 
  width:100%; background:#151518; border:1px solid #2a2a30; 
  color:var(--white); padding:16px 20px; font-family:var(--font); 
  font-size:15px; border-radius:8px; outline:none; transition:all .2s; 
}
.contact-form input:focus,
.contact-form textarea:focus { border-color:var(--blue); background: #1a1a20; }
.contact-form textarea { resize:vertical; min-height:150px; }
.form-ok { display:none; color:#5be08a; font-size:15px; font-weight:600; text-align:center; padding:10px; }

/* ── SERVICES PAGE (STRICT REPLICA) ── */
.s-services-hero {
  padding: 100px 60px 80px;
  background: #000;
  text-align: center;
  margin-top: 80px;
}
.services-hero__content h1 {
  font-size: 62px;
  font-weight: 800;
  color: #fff;
  margin-top: 15px;
}

.s-service-row {
  display: flex;
  min-height: 520px;
  width: 100%;
}
.s-service-row.row-reverse {
  flex-direction: row-reverse;
}

.service-row__img, .service-row__text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-row__catalogs {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  background: #fff;
}

.catalogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 900px;
}

.catalog-item {
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.catalog-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.catalog-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.row-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-white { background: #ffffff; }
.bg-black { background: #000000; }

.service-row__text {
  padding: 80px;
  text-align: left;
}
.text-content {
  max-width: 500px;
}
.service-row__text h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #fff;
}
.service-row__text p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Ajustes específicos para filas blancas si el texto es oscuro (aunque en Wix suele ser negro con texto blanco) */
.bg-white + .service-row__text.bg-black h2 { color: #fff; }
.bg-white + .service-row__text.bg-black p { color: rgba(255,255,255,0.7); }

@media (max-width: 1024px) {
  .s-service-row, .s-service-row.row-reverse {
    flex-direction: column;
  }
  .service-row__img { min-height: 350px; }
  .service-row__text { padding: 60px 40px; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .header-inner { padding: 0 40px; }
  .hero__text h1 { font-size: 42px; }
  .s-mangueras-text__header h2 { font-size: 36px; }
  .s-trazab__text { padding: 40px; }
  .s-trazab__phone { flex: 0 0 350px; }
  .s-about-quienes .inner { gap: 50px; }
  .img-main { width: 100%; max-width: 600px; height: 300px; }
  .img-sub { width: 280px; right: -40px; }
}

@media (max-width: 768px) {
  /* Header & Mobile Nav */
  .site-header { height: 70px; background: rgba(0,0,0,0.9); backdrop-filter: blur(10px); }
  .header-inner { padding: 0 24px; }
  .logo img { width: 120px !important; }
  
  .menu-toggle { display: flex; }
  
  .top-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    z-index: 1500;
  }
  
  .menu-open .top-nav {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  
  .top-nav ul {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .top-nav a {
    font-size: 24px;
    font-weight: 700;
  }

  /* Hero */
  .hero { height: auto; aspect-ratio: 1 / 1; max-height: 500px; }
  .hero__text-container { padding: 0 30px; }
  .hero__text h1 { font-size: 34px; }
  .hero__desc { font-size: 15px; }

  /* Mangueras */
  .s-mangueras-text__header { padding: 60px 24px; }
  .s-mangueras-text__header h2 { font-size: 28px; }
  .s-mangueras-img { min-height: 400px; }
  .mangueras-showcase { max-width: 90%; }
  .s-mangueras-img .btn-blue { margin-top: -20px; }

  /* Trazabilidad */
  .s-trazab { flex-direction: column; }
  .s-trazab__foto { padding: 60px 24px; min-height: auto; }
  .s-trazab__text { padding: 0; text-align: center; }
  .s-trazab__icon-row { flex-direction: column; }
  .s-trazab__phone { flex: none; width: 100%; padding: 40px; justify-content: center; background: #000; }
  .s-trazab__phone img { max-height: 350px; }

  /* Servicio */
  .s-servicio { flex-direction: column; }
  .s-servicio__left { height: 250px; }
  .s-servicio__right { padding: 50px 24px; text-align: center; align-items: center; }
  .s-servicio__icon-row { flex-direction: column; }
  .s-servicio__right h2 { font-size: 30px; }

  /* Quienes Somos */
  .s-quienes { flex-direction: column-reverse; }
  .s-quienes__left { padding: 50px 24px; text-align: center; align-items: center; }
  .s-quienes__icon-row { flex-direction: column; }
  .s-quienes__left h2 { font-size: 30px; }
  .s-quienes__left .btn-blue { align-self: center; }
  .s-quienes__right { height: 300px; }

  /* Specs */
  .s-specs { padding: 80px 24px; }
  .s-specs__inner h2 { font-size: 24px; margin-bottom: 40px; }
  .specs-staggered { display: flex; flex-direction: column; gap: 20px; height: auto; }
  .spec-card { position: relative; width: 100%; left: auto; top: auto; right: auto; bottom: auto; }

  /* Clientes */
  .s-clientes { padding: 60px 24px; }
  .s-clientes__inner h2 { font-size: 22px; }

  /* CTA */
  .s-cta { padding: 80px 24px; }
  .s-cta__inner h2 { font-size: 26px; }

  /* About Page */
  .s-about-top { padding: 100px 24px 140px; }
  .about-top__inner h1 { font-size: 32px; margin-bottom: 40px; }
  .img-main { width: 100%; height: 240px; }
  .img-sub { width: 200px; right: 0; bottom: -40px; margin: 0 auto; position: absolute; left: 50%; transform: translateX(-50%); }
  
  .s-about-quienes { padding: 80px 24px; }
  .s-about-quienes .inner { flex-direction: column; gap: 30px; text-align: center; }
  .quienes-left { flex: none; width: 100%; }
  .quienes-left h2 { font-size: 36px; }

  /* Contact */
  .s-contact { padding: 60px 24px; }
  .s-contact .inner { grid-template-columns: 1fr; gap: 60px; }
  .contact-info { text-align: center; }
  .contact-info h2 { font-size: 32px; }
  .contact-form-wrap { padding: 30px 20px; }
  .form-row { flex-direction: column; }

  /* Services */
  .s-services-hero { padding: 60px 24px; margin-top: 70px; }
  .services-hero__content h1 { font-size: 36px; }
  .service-row__text { padding: 50px 24px; text-align: center; }
  .service-row__text h2 { font-size: 30px; }
  .catalogs-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; padding: 20px; }
  .service-row__catalogs { padding: 30px 15px; }

  /* Footer */
  .site-footer { padding: 40px 24px; }
  .footer-nav { flex-direction: column; gap: 30px; text-align: center; }
  .footer-nav__left, .footer-nav__right { flex-direction: column; gap: 15px; }
  .footer-bottom { padding-top: 20px; }
}

@media (max-width: 480px) {
  .hero__text h1 { font-size: 28px; }
  .catalogs-grid { grid-template-columns: 1fr; }
  .img-sub { width: 160px; }
}
