/* ============================================================
   PAPELERA FÉNIX — Stylesheet Principal
   Paleta: #000000 | #FFFFFF | #FF6A00
   Tipografía: Bebas Neue (display) + Barlow Condensed (heads) + Barlow (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ─── VARIABLES ─────────────────────────────────────────── */
:root {
  --black:   #000000;
  --white:   #FFFFFF;
  --orange:  #FF6A00;
  --orange-d:#CC5400;
  --orange-l:#FF8C35;
  --gray-900:#111111;
  --gray-800:#1A1A1A;
  --gray-700:#2A2A2A;
  --gray-400:#888888;
  --gray-200:#DDDDDD;
  --gray-100:#F5F5F5;
  --font-display: 'Bebas Neue', sans-serif;
  --font-head:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --nav-h: 72px;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(0,0,0,.15);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.25);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-900); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.display { font-family: var(--font-display); letter-spacing: .04em; }
.section-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-top: .5rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 560px;
  margin-top: .75rem;
  font-weight: 400;
  line-height: 1.7;
}

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,106,0,.35);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-sm { padding: 10px 22px; font-size: .88rem; }

/* ─── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(0,0,0,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
  backdrop-filter: blur(12px);
}
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 44px; width: auto; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-cta {
  margin-left: 16px;
  padding: 10px 22px;
  font-size: .88rem;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--black);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(255,106,0,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 20% 80%, rgba(255,106,0,.06) 0%, transparent 60%);
  z-index: 0;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}
.hero-slash {
  position: absolute;
  right: -5%;
  top: 0; bottom: 0;
  width: 55%;
  background: linear-gradient(135deg, rgba(255,106,0,.04) 0%, transparent 60%);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--nav-h);
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .6s .2s ease forwards;
}
.hero-label::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--orange);
}
.hero-logo-space {
  width: 260px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .6s .1s ease forwards;
}
.hero-logo-space img {
  max-height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: .04em;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .7s .35s ease forwards;
}
.hero-title span { color: var(--orange); }
.hero-subtitle {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 400;
  color: rgba(255,255,255,.7);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .7s .5s ease forwards;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .7s .65s ease forwards;
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.1);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .7s .8s ease forwards;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--orange);
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 4px;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-family: var(--font-head);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 1;
}
.hero-scroll svg { width: 20px; opacity: .5; }

/* ─── VENTAJAS ───────────────────────────────────────────── */
.ventajas { background: var(--gray-100); }
.ventajas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.ventaja-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 28px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.ventaja-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
}
.ventaja-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.ventaja-card:hover::before { transform: scaleY(1); }
.ventaja-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,106,0,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.ventaja-icon svg { width: 24px; height: 24px; color: var(--orange); }
.ventaja-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.ventaja-card p { font-size: .92rem; color: var(--gray-400); line-height: 1.6; }

/* ─── PRODUCTOS DESTACADOS ───────────────────────────────── */
.productos { background: var(--white); }
.productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.prod-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  background: var(--white);
}
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.prod-img {
  height: 180px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.prod-img-icon {
  font-size: 4rem;
  opacity: .4;
}
.prod-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}
.prod-body { padding: 20px; }
.prod-cat {
  font-size: .72rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  margin-bottom: 6px;
}
.prod-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.prod-desc { font-size: .85rem; color: var(--gray-400); line-height: 1.5; margin-bottom: 16px; }
.prod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.prod-price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gray-900);
}
.prod-price span { color: var(--gray-400); font-size: .8rem; font-weight: 400; }

/* ─── TESTIMONIOS ────────────────────────────────────────── */
.testimonios { background: var(--black); }
.testimonios .section-label { color: var(--orange-l); }
.testimonios .section-title { color: var(--white); }
.testimonios .section-subtitle { color: rgba(255,255,255,.5); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 56px;
}
.testi-card {
  background: var(--gray-800);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
}
.testi-card:hover {
  border-color: rgba(255,106,0,.3);
  transform: translateY(-4px);
}
.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testi-stars svg { width: 16px; height: 16px; fill: var(--orange); color: var(--orange); }
.testi-text {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 28px;
  font-style: italic;
}
.testi-text::before { content: '"'; color: var(--orange); font-size: 2rem; line-height: 0; vertical-align: -.4em; margin-right: 4px; }
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}
.testi-name { font-weight: 700; color: var(--white); font-size: .95rem; }
.testi-role { font-size: .78rem; color: var(--gray-400); margin-top: 2px; }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: var(--gray-400);
  margin-top: 6px;
}

/* ─── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  background: var(--orange);
  padding: 72px 0;
}
.cta-band .section-label { color: rgba(255,255,255,.7); }
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-band p {
  color: rgba(255,255,255,.85);
  max-width: 480px;
  font-size: 1.05rem;
}
.cta-band .btn-secondary {
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}
.cta-band .btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
  color: var(--white);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.6);
  padding: 72px 0 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 280px; }
.footer-slogan {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--orange);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,.5);
}
.footer-social a:hover { background: var(--orange); color: var(--white); transform: translateY(-3px); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul a:hover { color: var(--orange); }
.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: .88rem;
  margin-bottom: 14px;
  color: rgba(255,255,255,.55);
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--orange); margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .82rem;
}
.footer-bottom a { color: var(--orange); }
.footer-bottom a:hover { text-decoration: underline; }

/* ─── WHATSAPP FLOAT ─────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,.6);
}
.wa-float svg { width: 30px; height: 30px; fill: var(--white); }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.3); }
  50% { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
}

/* ─── PAGE HERO (sub-páginas) ────────────────────────────── */
.page-hero {
  background: var(--black);
  padding: 120px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.page-hero-label { margin-bottom: 12px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--white);
  letter-spacing: .04em;
}
.page-hero h1 span { color: var(--orange); }
.page-hero p {
  color: rgba(255,255,255,.6);
  max-width: 520px;
  margin-top: 16px;
  font-size: 1.05rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  margin-top: 32px;
}
.breadcrumb a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }
.breadcrumb svg { width: 12px; opacity: .4; }

/* ─── EMPRESA ────────────────────────────────────────────── */
.empresa-historia {
  background: var(--white);
}
.historia-content { max-width: 640px; }
.historia-content p {
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1rem;
}
.historia-img {
  background: var(--gray-100);
  border-radius: 8px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.historia-img-placeholder {
  text-align: center;
  color: var(--gray-400);
}
.historia-img-placeholder svg { width: 64px; height: 64px; opacity: .3; margin-bottom: 12px; }
.historia-img-placeholder p { font-size: .85rem; }
.timeline {
  position: relative;
  padding-left: 32px;
  margin-top: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), rgba(255,106,0,.1));
}
.timeline-item { position: relative; margin-bottom: 28px; }
.timeline-dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px rgba(255,106,0,.2);
}
.timeline-year {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .85rem;
  color: var(--orange);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.timeline-text { font-size: .95rem; color: var(--gray-400); line-height: 1.6; }
.valores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.valor-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--gray-100);
  border-radius: 8px;
  transition: var(--transition);
}
.valor-card:hover { background: var(--black); }
.valor-card:hover h3 { color: var(--white); }
.valor-card:hover p { color: rgba(255,255,255,.5); }
.valor-icon {
  width: 60px; height: 60px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.valor-icon svg { width: 28px; height: 28px; color: var(--white); }
.valor-card h3 { font-size: 1.1rem; margin-bottom: 10px; transition: color var(--transition); }
.valor-card p { font-size: .88rem; color: var(--gray-400); line-height: 1.6; transition: color var(--transition); }
.mision-vision {
  background: var(--black);
}
.mision-vision .section-title { color: var(--white); }
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}
.mv-card {
  background: var(--gray-800);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.mv-card:first-child { border-radius: 8px 0 0 8px; }
.mv-card:last-child  { border-radius: 0 8px 8px 0; }
.mv-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--orange);
}
.mv-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: .04em;
}
.mv-card p { color: rgba(255,255,255,.6); line-height: 1.8; font-size: 1rem; }

/* ─── CATÁLOGO ───────────────────────────────────────────── */
.catalogo { background: var(--gray-100); min-height: calc(100vh - var(--nav-h)); }
.cat-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  padding: 28px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  align-items: center;
}
.cat-filter-btn {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 4px;
  border: 2px solid var(--gray-200);
  color: var(--gray-400);
  transition: var(--transition);
  background: transparent;
}
.cat-filter-btn:hover,
.cat-filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.cat-search-wrap {
  margin-left: auto;
  position: relative;
}
.cat-search {
  padding: 10px 16px 10px 40px;
  border: 2px solid var(--gray-200);
  border-radius: 4px;
  font-size: .9rem;
  width: 240px;
  transition: border-color var(--transition);
  outline: none;
}
.cat-search:focus { border-color: var(--orange); }
.cat-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
}
.cat-search-icon svg { width: 16px; height: 16px; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.cat-card {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.cat-card-img {
  height: 190px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  position: relative;
  overflow: hidden;
}
.cat-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.1), transparent);
}
.cat-card-body { padding: 20px; }
.cat-card-tag {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange);
  margin-bottom: 6px;
}
.cat-card-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.cat-card-desc { font-size: .85rem; color: var(--gray-400); line-height: 1.5; margin-bottom: 18px; }
.cat-card-footer {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cat-add-btn {
  flex: 1;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 10px 16px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.cat-add-btn:hover { background: var(--orange-d); }
.cat-add-btn svg { width: 16px; height: 16px; }
.cat-view-btn {
  width: 40px; height: 40px;
  border: 2px solid var(--gray-200);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--gray-400);
}
.cat-view-btn:hover { border-color: var(--orange); color: var(--orange); }
.cat-view-btn svg { width: 16px; height: 16px; }

/* Cart Badge */
.cart-badge {
  position: fixed;
  bottom: 100px;
  right: 28px;
  background: var(--black);
  color: var(--white);
  border-radius: 40px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: var(--transition);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.cart-badge.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cart-badge:hover { background: var(--orange); transform: translateY(-3px); }
.cart-badge svg { width: 18px; height: 18px; }
.cart-count {
  background: var(--orange);
  color: var(--white);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
}
.cart-badge.visible ~ .cart-count { /* handled by JS */ }

/* Product Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white);
  border-radius: 12px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px) scale(.97);
  transition: var(--transition);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-header {
  padding: 28px 32px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--gray-900);
}
.modal-close:hover { background: var(--orange); color: var(--white); }
.modal-close svg { width: 16px; height: 16px; }
.modal-body { padding: 20px 32px 32px; }
.modal-img {
  width: 100%;
  height: 200px;
  background: var(--gray-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  margin-bottom: 24px;
}
.modal-tag { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--orange); margin-bottom: 8px; }
.modal h2 { font-size: 1.8rem; margin-bottom: 12px; }
.modal p { color: var(--gray-400); line-height: 1.7; margin-bottom: 16px; }
.modal-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.modal-qty label { font-weight: 600; font-family: var(--font-head); font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; }
.qty-input {
  width: 80px;
  padding: 10px 14px;
  border: 2px solid var(--gray-200);
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  outline: none;
  transition: border-color var(--transition);
}
.qty-input:focus { border-color: var(--orange); }
.modal-unit { font-size: .85rem; color: var(--gray-400); }

/* ─── PEDIDOS ────────────────────────────────────────────── */
.pedidos-wrap { display: grid; grid-template-columns: 1fr 360px; gap: 32px; }
.pedido-form-card, .pedido-summary {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  padding: 36px;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--gray-900);
}
.form-group label span { color: var(--orange); }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 4px;
  font-size: .95rem;
  font-family: var(--font-body);
  color: var(--gray-900);
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
}
.form-control:focus { border-color: var(--orange); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
textarea.form-control { resize: vertical; min-height: 120px; }
.pedido-items-list { margin-bottom: 28px; }
.pedido-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
}
.pedido-item-emoji { font-size: 1.8rem; }
.pedido-item-info { flex: 1; }
.pedido-item-name { font-weight: 700; font-size: .95rem; }
.pedido-item-qty { font-size: .82rem; color: var(--gray-400); }
.pedido-item-remove {
  color: var(--gray-400);
  transition: color var(--transition);
}
.pedido-item-remove:hover { color: #e53935; }
.pedido-item-remove svg { width: 16px; height: 16px; }
.pedido-summary-total {
  background: var(--black);
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.pedido-summary-total span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.pedido-summary-total strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--orange);
  margin-top: 4px;
  letter-spacing: .04em;
}
.send-options { display: flex; flex-direction: column; gap: 12px; }
.send-btn-wa {
  background: #25D366;
  color: var(--white);
  border-radius: 4px;
  padding: 14px 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.send-btn-wa:hover { background: #1fb855; transform: translateY(-2px); }
.send-btn-email {
  background: var(--orange);
  color: var(--white);
  border-radius: 4px;
  padding: 14px 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.send-btn-email:hover { background: var(--orange-d); transform: translateY(-2px); }

/* ─── BLOG ───────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 56px;
}
.blog-card {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 220px;
  background: var(--gray-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.4), transparent 60%);
}
.blog-card-category {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  z-index: 1;
}
.blog-card-body { padding: 28px; }
.blog-meta {
  display: flex;
  gap: 16px;
  font-size: .78rem;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.blog-card-title { font-size: 1.2rem; font-weight: 700; line-height: 1.35; margin-bottom: 12px; }
.blog-card-title a { transition: color var(--transition); }
.blog-card-title a:hover { color: var(--orange); }
.blog-card-excerpt { font-size: .9rem; color: var(--gray-400); line-height: 1.6; margin-bottom: 20px; }
.blog-read-more {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.blog-read-more:hover { gap: 10px; }
.blog-read-more svg { width: 14px; }

/* ─── CONTACTO ───────────────────────────────────────────── */
.contacto-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
}
.contact-info-card {
  background: var(--black);
  border-radius: 8px;
  padding: 48px 40px;
  color: var(--white);
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.contact-info-card > p {
  color: rgba(255,255,255,.5);
  margin-bottom: 36px;
  line-height: 1.6;
}
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(255,106,0,.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--orange); }
.contact-detail strong { display: block; color: var(--white); font-weight: 700; margin-bottom: 4px; }
.contact-detail span { color: rgba(255,255,255,.5); font-size: .9rem; }
.contact-social { display: flex; gap: 12px; margin-top: 32px; }
.contact-social a {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.contact-social a:hover { background: var(--orange); color: var(--white); transform: translateY(-3px); }
.contact-social svg { width: 18px; height: 18px; }
.contact-form-card {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  padding: 48px 40px;
}
.map-container {
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 32px;
  border: 1px solid var(--gray-200);
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ─── ANIMACIONES ────────────────────────────────────────── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .15s; }
.reveal-delay-2 { transition-delay: .3s; }
.reveal-delay-3 { transition-delay: .45s; }
.reveal-delay-4 { transition-delay: .6s; }

/* ─── DIVIDER ────────────────────────────────────────────── */
.divider-orange {
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-l), transparent);
  border: none;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-2, .contacto-wrap { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .mv-card:first-child { border-radius: 8px 8px 0 0; }
  .mv-card:last-child  { border-radius: 0 0 8px 8px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pedidos-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-logo img { height: 36px; max-width: 140px; object-fit: contain; }
  .nav-menu {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(0,0,0,.97);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 4px;
    transform: translateY(-110%);
    transition: transform var(--transition);
    backdrop-filter: blur(12px);
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-link { padding: 12px 16px; }
  .nav-toggle { display: flex; }
  .nav-cta { margin-left: 0; margin-top: 12px; text-align: center; justify-content: center; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .cat-filters { gap: 8px; }
  .cat-search-wrap { margin-left: 0; width: 100%; }
  .cat-search { width: 100%; }
  .section { padding: 72px 0; }
}
@media (max-width: 480px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 3.2rem; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ─── MISC ───────────────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,106,0,.1);
  color: var(--orange);
  border-radius: 3px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.text-orange { color: var(--orange); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--gray-400); }
.mt-0  { margin-top: 0; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* Alert/Toast */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--black);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 40px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast svg { width: 18px; color: var(--orange); }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 64px 24px;
  color: var(--gray-400);
  grid-column: 1/-1;
}
.empty-state svg { width: 56px; opacity: .3; margin: 0 auto 16px; display: block; }
.empty-state p { font-size: 1.1rem; }

/* ─── RUBROS ─────────────────────────────────────────────── */
.rubros { background: var(--gray-900); }
.rubros .section-title { color: var(--white); }
.rubros-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.rubro-card {
  background: var(--gray-800);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 28px 16px;
  text-align: center;
  transition: var(--transition);
}
.rubro-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255,106,0,.15);
}
.rubro-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,106,0,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.rubro-icon svg { width: 26px; height: 26px; stroke: var(--orange); fill: none; }
.rubro-card h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
  letter-spacing: .02em;
}

/* ─── CÓMO COMPRAR ───────────────────────────────────────── */
.como-comprar { background: var(--white); }
.pasos-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 24px;
  margin-top: 56px;
}
.paso-card {
  background: var(--gray-100);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}
.paso-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.paso-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 16px;
}
.paso-icon {
  width: 64px;
  height: 64px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.paso-icon svg { width: 28px; height: 28px; }
.paso-card h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--black); }
.paso-card p { color: var(--gray-400); font-size: .95rem; line-height: 1.6; margin-bottom: 24px; }
.paso-card .btn { margin-top: auto; }
.paso-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
}
.paso-arrow svg { width: 32px; height: 32px; stroke: var(--orange); }

/* ─── ZONA DE COBERTURA ──────────────────────────────────── */
.cobertura { background: var(--black); }
.cobertura .section-title { color: var(--white); }
.cobertura-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}
.cobertura-desc {
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 32px;
  font-size: 1.05rem;
}
.cobertura-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  margin-bottom: 24px;
}
.cobertura-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.8);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cobertura-item svg { width: 14px; height: 14px; stroke: var(--orange); flex-shrink: 0; }
.cobertura-note {
  padding: 16px 20px;
  background: rgba(255,106,0,.08);
  border-left: 3px solid var(--orange);
  border-radius: 0 4px 4px 0;
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  line-height: 1.6;
}

/* ─── RESPONSIVE nuevas secciones ────────────────────────── */
@media (max-width: 900px) {
  .rubros-grid { grid-template-columns: repeat(3, 1fr); }
  .pasos-grid { grid-template-columns: 1fr; }
  .paso-arrow { display: none; }
  .cobertura-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 480px) {
  .rubros-grid { grid-template-columns: repeat(2, 1fr); }
  .cobertura-list { grid-template-columns: 1fr 1fr; }
}
