/* ============================================================
   YETIS Ice — Sitio Web Corporativo
   Tema claro · Chihuahua, México
   Azul/cian de marca (hielo) sobre fondo blanco, cards con
   sombra real en vez de vidrio esmerilado por defecto.
   ============================================================ */

:root {
  --bg:        #ffffff;
  --bg2:       #f2f8fb;
  --footer-bg: #eaf2f6;
  --ink:       #0b1f33;
  --body-c:    #46607a;
  --muted:     #64748b;

  --blue:      #0284c7;   /* acción primaria: botones, links */
  --blue-deep: #075985;   /* hover */
  --cyan:      #0e7490;   /* acento de texto legible sobre blanco */
  --glow:      #22d3ee;   /* SOLO decorativo: glows, dots, bordes translúcidos */
  --amber:     #b45309;   /* texto/acento ámbar legible */

  --card-bg:   #ffffff;
  --border:    rgba(11, 32, 51, 0.10);
  --border-strong: rgba(11, 32, 51, 0.18);

  --shadow:    0 1px 3px rgba(11, 32, 51, 0.05), 0 8px 22px rgba(11, 32, 51, 0.06);
  --shadow-md: 0 6px 18px rgba(11, 32, 51, 0.09), 0 20px 42px rgba(11, 32, 51, 0.08);

  --radius:    1rem;
  --transition: .35s 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: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--body-c);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { color: var(--ink); }
::selection { background: rgba(2, 132, 199, 0.18); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 3px; }

/* ── Utilidades ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 6rem 0; }
.text-cyan   { color: var(--cyan); }
.text-amber  { color: var(--amber); }
.text-muted  { color: var(--muted); }
.fw-800      { font-weight: 800; }

.section-tag {
  display: inline-block;
  background: rgba(2, 132, 199, .08);
  color: var(--cyan);
  border: 1px solid rgba(2, 132, 199, .18);
  border-radius: 2rem;
  padding: .3rem 1rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 3rem;
}
.text-center { text-align: center; }

/* ── Botones ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: transform 160ms cubic-bezier(.4,0,.2,1), box-shadow 220ms cubic-bezier(.4,0,.2,1), background 220ms cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}
.btn:active { transform: scale(.96) !important; transition-duration: 80ms; }
.btn i { transition: transform 200ms cubic-bezier(.4,0,.2,1); }
.btn:hover i { transform: translateX(2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), #0891b2);
  color: #fff;
  box-shadow: 0 4px 20px rgba(2,132,199,.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(2,132,199,.38);
}
.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1.5px solid var(--cyan);
}
.btn-outline:hover {
  background: rgba(14,116,144,.08);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.28);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.4);
}
.btn-amber {
  background: linear-gradient(135deg, #d97706, #ef4444);
  color: #fff;
  box-shadow: 0 4px 20px rgba(217,119,6,.25);
}
.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(217,119,6,.4);
}

/* ── Card base (antes vidrio esmerilado por defecto; ahora
      superficie clara con sombra real) ── */
.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.glass-card:hover {
  border-color: rgba(2,132,199,.30);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 20px rgba(11,32,51,.05);
  padding: .7rem 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}
.nav-logo-img { height: 42px; width: 42px; object-fit: cover; border-radius: 50%; }
.nav-logo-footer { height: 54px; width: 54px; }
.nav-logo-text {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--ink);
}
.nav-logo-text em {
  font-style: normal;
  color: var(--cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  position: relative;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms cubic-bezier(.4,0,.2,1);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--ink); font-weight: 600; }

.nav-cta { display: flex; align-items: center; gap: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .3rem;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Mobile nav ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--cyan); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% -5%, rgba(2,132,199,.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 92% 55%, rgba(34,211,238,.08) 0%, transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--bg2) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding-top: 2rem;
}

/* Entrada del hero al cargar (no por scroll): cada elemento se
   escalona con --d, igual que el resto de la web. */
.anim-hero {
  opacity: 0;
  transform: translateY(22px);
  animation: heroIn 700ms cubic-bezier(.16,1,.3,1) forwards;
  animation-delay: calc(var(--d, 0) * 90ms);
}
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(2,132,199,.08);
  border: 1px solid rgba(2,132,199,.18);
  border-radius: 2rem;
  padding: .4rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 1.5rem;
  letter-spacing: .05em;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.7); }
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
}
.hero-title .highlight { color: var(--blue); }

.hero-desc {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
}
.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
}
.hero-stat span { font-size: .8rem; color: var(--muted); }

/* Hero visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  position: relative;
  max-width: 380px;
  width: 100%;
}
.hero-card-main {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}
.hero-card-main .card-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.hero-card-main h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.hero-card-main p { color: var(--muted); font-size: .9rem; }

.hero-mini-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: .8rem 1.1rem;
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .88rem;
  white-space: nowrap;
  width: fit-content;
}
.hero-mini-card:first-child { animation: floatCard 3s ease-in-out infinite; }
.hero-mini-card:last-child  { animation: floatCard 3s ease-in-out infinite .5s; }

@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.float-icon {
  width: 36px; height: 36px;
  border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.float-icon.green  { background: rgba(5,150,105,.14); color: #047857; }
.float-icon.blue   { background: rgba(2,132,199,.14);  color: var(--blue); }
.float-label { font-size: .75rem; color: var(--muted); }
.float-value { font-size: .95rem; font-weight: 700; color: var(--ink); }

/* Glow decorativo, restringido y sutil */
.hero-glow {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2,132,199,.10) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features { background: var(--bg2); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.feature-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--glow));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  border-color: rgba(2,132,199,.25);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(2,132,199,.14), rgba(34,211,238,.08));
  border: 1px solid rgba(2,132,199,.16);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  color: var(--cyan);
  transition: transform 260ms cubic-bezier(.34,1.56,.64,1);
}
.feature-card:hover .feature-icon { transform: scale(1.08) rotate(-4deg); }
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.feature-card p { color: var(--muted); font-size: .9rem; line-height: 1.6; }

/* ============================================================
   PRODUCTOS
   ============================================================ */
.productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 1.5rem;
}
.producto-card {
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.producto-card:hover {
  border-color: rgba(2,132,199,.30);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.producto-img {
  height: 180px;
  background: linear-gradient(135deg, rgba(2,132,199,.10), rgba(34,211,238,.06));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.producto-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.producto-img .producto-emoji {
  position: relative;
  z-index: 1;
}
.producto-badge {
  position: absolute;
  top: .8rem; right: .8rem;
  background: linear-gradient(135deg, #d97706, #ef4444);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 2rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.producto-body {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.producto-category {
  font-size: .72rem;
  color: var(--cyan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: .3rem;
}
.producto-nombre {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--ink);
}
.producto-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 1rem;
}
.producto-precio {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--ink);
}
.producto-unidad { font-size: .75rem; color: var(--muted); font-weight: 400; }
.producto-actions { margin-top: .8rem; }
.producto-actions .btn { width: 100%; justify-content: center; padding: .65rem; font-size: .88rem; }

.no-productos {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem;
  color: var(--muted);
}
.no-productos i { font-size: 3rem; margin-bottom: 1rem; opacity: .35; color: var(--cyan); }

/* ============================================================
   NOSOTROS
   ============================================================ */
.nosotros { background: var(--bg2); }
.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.nosotros-visual {
  position: relative;
}
.nosotros-img-wrap {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, rgba(2,132,199,.10), rgba(34,211,238,.05));
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  position: relative;
}
.nosotros-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.nosotros-badge-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, var(--blue), var(--glow));
  color: #fff;
  border-radius: 1rem;
  padding: 1.2rem 1.5rem;
  font-weight: 800;
  text-align: center;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(2,132,199,.35);
}
.nosotros-badge-float .big { font-size: 2rem; line-height: 1; }
.nosotros-badge-float .small { font-size: .75rem; opacity: .9; }

.nosotros-content .section-tag { display: inline-block; }
.nosotros-content .section-title { text-align: left; }
.nosotros-content .section-sub { text-align: left; margin: 0 0 2rem; }

.nosotros-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.pillar {
  padding: 1rem;
  border-radius: .75rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.pillar:hover {
  border-color: rgba(2,132,199,.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.pillar i { color: var(--cyan); margin-bottom: .4rem; font-size: 1.2rem; transition: transform 220ms cubic-bezier(.34,1.56,.64,1); }
.pillar:hover i { transform: scale(1.15); }
.pillar h4 { font-size: .9rem; font-weight: 700; margin-bottom: .25rem; color: var(--ink); }
.pillar p { font-size: .8rem; color: var(--muted); line-height: 1.4; }

/* ============================================================
   PEDIDO ONLINE
   ============================================================ */
.pedido {
  position: relative;
  overflow: hidden;
}
.pedido::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(2,132,199,.05) 0%, transparent 70%);
  pointer-events: none;
}
.pedido-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.pedido-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.pedido-info p { color: var(--muted); margin-bottom: 2rem; line-height: 1.7; }
.pedido-steps { display: flex; flex-direction: column; gap: 1.2rem; }
.pedido-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 220ms cubic-bezier(.4,0,.2,1);
}
.pedido-step:hover { transform: translateX(4px); }
.step-num {
  width: 36px; height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--glow));
  color: #fff;
  font-weight: 800;
  font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  transition: transform 220ms cubic-bezier(.34,1.56,.64,1), box-shadow 220ms ease;
}
.pedido-step:hover .step-num { transform: scale(1.12); box-shadow: 0 4px 14px rgba(2,132,199,.35); }
.step-text h4 { font-size: .95rem; font-weight: 700; margin-bottom: .2rem; color: var(--ink); }
.step-text p  { font-size: .85rem; color: var(--muted); }

.pedido-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.pedido-form-wrap h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: .83rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #f7fafc;
  border: 1px solid var(--border-strong);
  border-radius: .75rem;
  padding: .85rem 1rem;
  color: var(--ink);
  font-size: .95rem;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #94a3b8; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(2,132,199,.12);
}
.form-group select option { background: #fff; color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============================================================
   CONTACTO
   ============================================================ */
.contacto { background: var(--bg2); }
.contacto-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.contacto-card {
  padding: 2rem;
  text-align: center;
}
.contacto-card .icon {
  width: 64px; height: 64px;
  border-radius: 1.2rem;
  margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  transition: transform 260ms cubic-bezier(.34,1.56,.64,1);
}
.glass-card:hover .icon { transform: scale(1.08) rotate(-4deg); }
.contacto-card .icon.blue   { background: rgba(2,132,199,.12);   color: var(--blue);  border: 1px solid rgba(2,132,199,.25); }
.contacto-card .icon.green  { background: rgba(5,150,105,.12);   color: #047857;      border: 1px solid rgba(5,150,105,.25); }
.contacto-card .icon.amber  { background: rgba(180,83,9,.12);    color: var(--amber); border: 1px solid rgba(180,83,9,.25); }
.contacto-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.contacto-card p  { color: var(--muted); font-size: .9rem; line-height: 1.6; }
.contacto-card a  { color: var(--cyan); transition: color .2s; }
.contacto-card a:hover { color: var(--blue-deep); }

.mapa-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  height: 380px;
}
.mapa-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { color: var(--muted); font-size: .9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: .8rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: .5rem;
  background: #fff;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: .9rem;
  transition: var(--transition);
}
.social-link:hover {
  background: rgba(2,132,199,.08);
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}
.social-link:active { transform: scale(.9); }
.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a {
  color: var(--muted);
  font-size: .9rem;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { color: var(--muted); font-size: .85rem; }
.footer-bottom .chihuahua-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: var(--muted);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 900;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: var(--transition);
  animation: waPop .5s cubic-bezier(.34,1.56,.64,1) forwards 1.2s both;
  cursor: pointer;
}
.wa-float:hover {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 10px 32px rgba(37,211,102,.5);
}
.wa-float:active { transform: scale(.94); }
.wa-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.3);
  animation: waPulse 2.2s ease-in-out infinite;
}
@keyframes waPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.15); opacity: 0; }
}
@keyframes waPop {
  from { transform: scale(0) rotate(180deg); opacity: 0; }
  to   { transform: scale(1) rotate(0); opacity: 1; }
}

/* ============================================================
   ANIMATIONS (AOS-like via JS)
   ============================================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(.8); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* ============================================================
   CARRUSEL
   Los botones/puntos van sobre fotografía: se mantienen oscuros
   y translúcidos a propósito (legibles sobre cualquier imagen).
   ============================================================ */
.carrusel-section {
  width: 100%;
  background: var(--bg);
  overflow: hidden;
}
.carrusel-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carrusel-track {
  display: flex;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.carrusel-slide {
  min-width: 100%;
  position: relative;
  flex-shrink: 0;
}
.carrusel-slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.carrusel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(6,14,24,.88));
  padding: 4rem 2rem 2rem;
  text-align: center;
}
.carrusel-caption h3 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .5rem;
}
.carrusel-caption p {
  color: rgba(255,255,255,.78);
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.carrusel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(6,14,24,.55);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .15s;
  z-index: 10;
  font-size: 1rem;
}
.carrusel-btn:hover {
  background: rgba(6,14,24,.75);
  border-color: rgba(255,255,255,.5);
}
.carrusel-btn:active { transform: translateY(-50%) scale(.9); }
.carrusel-prev { left: 1.25rem; }
.carrusel-next { right: 1.25rem; }
.carrusel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 10;
}
.carrusel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: background .25s, transform .25s;
  padding: 0;
}
.carrusel-dot.active {
  background: var(--glow);
  transform: scale(1.4);
}
@media (max-width: 768px) {
  .carrusel-slide img { height: 240px; }
  .carrusel-btn { width: 36px; height: 36px; font-size: .8rem; }
}

/* mini-carrusel dentro de nosotros */
.nosotros-carrusel {
  position: relative;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.nosotros-carrusel-track {
  display: flex;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94);
}
.nosotros-carrusel-slide {
  min-width: 100%;
  flex-shrink: 0;
}
.nosotros-carrusel-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.nos-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(6,14,24,.5);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  z-index: 5;
  font-size: .85rem;
}
.nos-btn:hover { background: rgba(6,14,24,.7); }
.nos-btn:active { transform: translateY(-50%) scale(.9); }
.nos-prev { left: .75rem; }
.nos-next { right: .75rem; }
.nos-dots {
  position: absolute;
  bottom: .75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .4rem;
  z-index: 5;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero .container     { grid-template-columns: 1fr; text-align: center; }
  .hero-desc           { margin: 0 auto 2rem; }
  .hero-btns           { justify-content: center; }
  .hero-stats          { justify-content: center; }
  .hero-visual         { display: none; }
  .nosotros-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .nosotros-visual     { display: none; }
  .nosotros-content .section-title,
  .nosotros-content .section-sub { text-align: center; }
  .nosotros-content .section-tag { display: block; text-align: center; }
  .pedido-grid         { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section-pad         { padding: 4rem 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger           { display: flex; }
  .features-grid       { grid-template-columns: 1fr; }
  .contacto-grid       { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom       { flex-direction: column; text-align: center; }
  .form-row            { grid-template-columns: 1fr; }
  .nosotros-pillars    { grid-template-columns: 1fr; }
  .hero-stats          { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .pedido-form-wrap { padding: 1.5rem; }
  .hero-btns        { flex-direction: column; align-items: center; }
  .btn              { width: 100%; justify-content: center; }
}

/* ============================================================
   MOVIMIENTO REDUCIDO
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .anim-hero { animation: heroFade 250ms ease forwards; transform: none; }
  @keyframes heroFade { to { opacity: 1; } }

  [data-aos] { transition: opacity 250ms ease; transform: none; }

  .hero-badge::before,
  .hero-mini-card:first-child,
  .hero-mini-card:last-child,
  .wa-float::after { animation: none; }

  .carrusel-track,
  .nosotros-carrusel-track { transition: none; }
}
