/* ============================================================
   ASDI REFRESH — hoja de estilos principal
   Paleta: Navy #0D1B2A | Verde lima #B9C41E | Blanco #F8F9FA
   ============================================================ */

/* --- Reset básico ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0D1B2A;
  --navy-mid:  #1A2E42;
  --navy-soft: #243B55;
  --lime:      #B9C41E;
  --lime-dark: #96A018;
  --lime-light:#D4E02A;
  --white:     #FFFFFF;
  --off-white: #F4F5F0;
  --gray-100:  #E8E9E4;
  --gray-300:  #B0B4A8;
  --gray-600:  #636B5A;
  --text-dark: #0D1B2A;
  --text-body: #3A4235;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(13,27,42,.10);
  --shadow-md: 0 6px 24px rgba(13,27,42,.15);
  --shadow-lg: 0 16px 48px rgba(13,27,42,.20);
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
  --container: 1200px;
  --font-head: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Google Fonts ----------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* --- Contenedor ------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--navy);
  color: var(--gray-300);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--navy-soft);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-left svg { color: var(--lime); flex-shrink: 0; }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar-fb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1877F2;
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  transition: background var(--transition);
}
.topbar-fb:hover { background: #1464d8; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--lime);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-wrap img { height: 48px; width: auto; }
.logo-name {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 2px;
}
.logo-name span { color: var(--lime); }

/* Nav desktop */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}
.main-nav a:hover, .main-nav a.active { color: var(--lime-dark); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--lime) !important;
  color: var(--navy) !important;
  border-radius: var(--radius-sm) !important;
  padding: 10px 20px !important;
}
.nav-cta:hover { background: var(--lime-dark) !important; }
.nav-cta::after { display: none !important; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 16px 24px 24px;
  border-top: 1px solid var(--gray-100);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.mobile-nav a:last-child { border-bottom: none; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  height: 90vh;
  min-height: 560px;
  overflow: hidden;
}
.hero-slides { height: 100%; position: relative; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,27,42,0.82) 0%,
    rgba(13,27,42,0.45) 55%,
    rgba(13,27,42,0.15) 100%
  );
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.hero-text { max-width: 620px; }
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.0;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: normal;
  color: var(--lime);
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.80);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.5;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Botón primario */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--lime-light); transform: translateY(-2px); }

/* Botón secundario */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 2px solid rgba(255,255,255,.50);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

/* Controles del slider */
.hero-controls {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.40);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.hero-dot.active {
  background: var(--lime);
  transform: scale(1.3);
}
.hero-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  pointer-events: none;
  z-index: 10;
}
.hero-arr {
  pointer-events: all;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(13,27,42,.55);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.hero-arr:hover { background: rgba(185,196,30,.85); }
.hero-arr svg { width: 20px; height: 20px; }

/* Botón flotante contacto */
.btn-flotante {
  position: fixed;
  right: -108px;
  bottom: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 16px;
  background: var(--lime);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 40px 0 0 40px;
  box-shadow: -4px 4px 18px rgba(0,0,0,.25);
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s;
  z-index: 9999;
  white-space: nowrap;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
}
.btn-flotante:hover,
.btn-flotante:focus-visible {
  right: 0;
  color: var(--navy);
  box-shadow: -6px 6px 24px rgba(0,0,0,.35);
}
.btn-flotante svg { flex-shrink: 0; }

/* ============================================================
   SECCIÓN: SOBRE NOSOTROS
   ============================================================ */
.about-section {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--lime);
  color: var(--navy);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}
.about-badge span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime-dark);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title em { font-style: normal; color: var(--lime-dark); }
.section-body {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 28px;
}
.about-tagline {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  border-left: 4px solid var(--lime);
  padding-left: 16px;
  margin-bottom: 36px;
  line-height: 1.3;
}

/* ============================================================
   SECCIÓN: COMPROMISO
   ============================================================ */
.commitment-section {
  padding: 100px 0;
  background: var(--off-white);
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-title { margin-bottom: 12px; }
.section-header p {
  max-width: 520px;
  margin: 0 auto;
  color: var(--gray-600);
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.commitment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.commitment-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.commitment-img {
  height: 220px;
  overflow: hidden;
}
.commitment-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.commitment-card:hover .commitment-img img { transform: scale(1.05); }
.commitment-body {
  padding: 28px;
}
.commitment-icon {
  width: 44px;
  height: 44px;
  background: var(--lime);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.commitment-icon svg { width: 22px; height: 22px; color: var(--navy); }
.commitment-body h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: .5px;
}
.commitment-body p { font-size: 15px; color: var(--gray-600); line-height: 1.6; }

/* ============================================================
   SECCIÓN: SECTORES
   ============================================================ */
.sectors-section {
  padding: 100px 0;
  background: var(--navy);
}
.sectors-section .section-title { color: var(--white); }
.sectors-section .section-header p { color: var(--gray-300); }
.sectors-section .section-eyebrow { color: var(--lime); }

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.sector-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(185,196,30,.20);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  text-align: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.sector-card:hover {
  background: rgba(185,196,30,.12);
  border-color: var(--lime);
  transform: translateY(-4px);
}
.sector-card img {
  height: 64px;
  width: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}
.sector-card:hover img { filter: none; }
.sector-card h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   SECCIÓN: LOGÍSTICA (Features)
   ============================================================ */
.logistics-section {
  padding: 100px 0;
  background: var(--white);
}
.logistics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.logistics-center-img img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.logistics-col { display: flex; flex-direction: column; gap: 28px; }
.logistics-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.logistics-ico {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--off-white);
  border: 2px solid var(--lime);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logistics-ico svg { width: 22px; height: 22px; color: var(--navy); }
.logistics-item h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 6px;
}
.logistics-item p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ============================================================
   SECCIÓN: AMBIENTAL
   ============================================================ */
.green-section {
  padding: 72px 0;
  background: var(--navy-mid);
  text-align: center;
}
.green-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.green-inner img {
  height: 80px;
  width: auto;
}
.green-text h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.green-text p {
  color: var(--gray-300);
  font-size: 15px;
  max-width: 480px;
  line-height: 1.6;
}

/* ============================================================
   SECCIÓN: CTA CONTACTO
   ============================================================ */
.cta-section {
  padding: 100px 0;
  background: var(--lime);
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 18px;
  color: rgba(13,27,42,.70);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: var(--gray-300);
}
.footer-top {
  padding: 72px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo-wrap { margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--gray-300);
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--gray-300);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--lime); }
.footer-schedule { font-size: 14px; line-height: 2; }
.footer-schedule strong { color: var(--white); }
.footer-sectors {
  font-size: 14px;
  line-height: 1.8;
}
.footer-sectors li { color: var(--gray-300); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--gray-600);
}
.footer-bottom a { color: var(--lime); }
.footer-bottom a:hover { text-decoration: underline; }

/* ============================================================
   BREADCRUMB (para conocenos)
   ============================================================ */
.breadcrumb-bar {
  background: var(--navy);
  padding: 48px 0;
  text-align: center;
}
.breadcrumb-bar h1 {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-300);
}
.breadcrumb-nav a { color: var(--lime); transition: color var(--transition); }
.breadcrumb-nav a:hover { text-decoration: underline; }
.breadcrumb-nav span { color: var(--gray-600); }

/* ============================================================
   PÁGINA CONÓCENOS
   ============================================================ */
.quienes-section {
  padding: 100px 0;
  background: var(--white);
}
.quienes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.quienes-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.quienes-img img { width: 100%; height: 100%; object-fit: cover; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.stat-box {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  text-align: center;
}
.stat-box strong {
  display: block;
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-box span { font-size: 12px; color: var(--gray-300); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* MV&V */
.mvv-section {
  padding: 100px 0;
  background: var(--off-white);
}
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mvv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mvv-img { height: 200px; overflow: hidden; }
.mvv-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.mvv-card:hover .mvv-img img { transform: scale(1.05); }
.mvv-body { padding: 28px; }
.mvv-tag {
  display: inline-block;
  background: var(--lime);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 14px;
}
.mvv-body h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.mvv-body p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

/* ============================================================
   ANIMACIONES SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid, .quienes-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { bottom: 16px; right: 16px; }
  .sectors-grid { grid-template-columns: repeat(3, 1fr); }
  .logistics-grid { grid-template-columns: 1fr; }
  .logistics-center-img { order: -1; }
  .logistics-col { flex-direction: row; flex-wrap: wrap; }
  .logistics-item { width: calc(50% - 14px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .main-nav, .topbar-left { display: none; }
  .burger { display: flex; }
  .commitment-grid, .mvv-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(3, 1fr); }
  .topbar .container { justify-content: center; }
  .topbar-right { display: none; }
  .hero { height: 70vh; min-height: 500px; }
  .hero-sub { display: none; }
  .hero-arr { width: 36px; height: 36px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .logistics-item { width: 100%; }
  .green-inner { flex-direction: column; }
}

@media (max-width: 480px) {
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}
