/* ═══════════════════════════════════════════════
   DOÑA EVITA — CSS PRINCIPAL
   ═══════════════════════════════════════════════ */

/* ── VARIABLES ─────────────────────────────────── */
:root {
  --background:          hsl(36, 33%, 96%);
  --foreground:          hsl(20, 14%, 12%);
  --card:                hsl(36, 40%, 98%);
  --card-foreground:     hsl(20, 14%, 12%);
  --primary:             hsl(358, 65%, 32%);
  --primary-foreground:  hsl(36, 33%, 96%);
  --primary-glow:        hsl(358, 70%, 45%);
  --secondary:           hsl(35, 35%, 90%);
  --secondary-foreground:hsl(20, 14%, 12%);
  --muted:               hsl(35, 25%, 92%);
  --muted-foreground:    hsl(20, 10%, 38%);
  --accent:              hsl(35, 75%, 52%);
  --accent-foreground:   hsl(20, 14%, 12%);
  --border:              hsl(30, 20%, 86%);
  --input:               hsl(30, 20%, 86%);
  --ring:                hsl(358, 65%, 32%);
  --radius:              0.875rem;

  /* Semánticos */
  --cream:      hsl(36, 45%, 94%);
  --charcoal:   hsl(20, 14%, 12%);
  --wine:       hsl(358, 65%, 32%);
  --wine-deep:  hsl(358, 70%, 22%);
  --gold:       hsl(35, 75%, 52%);

  /* Gradientes */
  --gradient-hero: linear-gradient(135deg, hsla(20,14%,8%,.85), hsla(358,70%,22%,.70));
  --gradient-warm: linear-gradient(180deg, hsl(36,33%,96%), hsl(35,35%,90%));
  --gradient-gold: linear-gradient(135deg, hsl(35,75%,52%), hsl(28,80%,48%));
  --gradient-wine: linear-gradient(135deg, hsl(358,65%,32%), hsl(358,70%,22%));
}

/* ── RESET & BASE ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--foreground);
  background: var(--background);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s; }
ul { list-style: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ── TIPOGRAFÍA ─────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  color: var(--charcoal);
}
.highlight-gold  { color: var(--gold);  font-style: italic; }
.highlight-wine  { color: var(--wine);  font-style: italic; }
.highlight-white { color: #fff; }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.section-label-light { color: var(--gold); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

/* ── BOTONES ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all .3s;
  line-height: 1;
}
.btn-primary {
  background: var(--wine);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--wine-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px hsla(358,65%,32%,.35);
}
.btn-gold {
  background: var(--gradient-gold);
  color: #fff;
  box-shadow: 0 4px 20px hsla(35,75%,52%,.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px hsla(35,75%,52%,.5);
  color: #fff;
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  color: #fff;
}
.btn-outline-wine {
  background: transparent;
  color: var(--wine);
  border: 2px solid var(--wine);
}
.btn-outline-wine:hover {
  background: var(--wine);
  color: #fff;
}

/* ── REVEAL ANIMATIONS ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HEADER ─────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all .3s ease;
  background: transparent;
}
#site-header.scrolled {
  background: rgba(245,239,230,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 20px rgba(0,0,0,.08);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.logo-circle {
  width: 44px; height: 44px;
  background: var(--wine);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  display: block;
  line-height: 1.1;
}
.logo-tagline {
  font-family: 'Inter', sans-serif;
  font-size: .55rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  display: block;
}
/* Sobre hero oscuro → texto blanco */
#site-header:not(.scrolled) .logo-name,
#site-header:not(.scrolled) .logo-tagline,
#site-header:not(.scrolled) .main-nav a {
  color: rgba(255,255,255,.9);
}
#site-header:not(.scrolled) .logo-tagline { color: rgba(255,255,255,.6); }
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.main-nav a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color .2s;
}
.main-nav a:hover { color: var(--wine); }
#site-header:not(.scrolled) .main-nav a:hover { color: var(--gold); }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: .3s;
  display: block;
}
#site-header:not(.scrolled) .menu-toggle span { background: #fff; }
.mobile-menu {
  display: none;
  padding: 1.5rem 2rem 2rem;
  background: var(--cream);
  border-top: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}
.mobile-menu.open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.mobile-menu nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu nav a:last-child { border-bottom: none; }

/* ── HERO ────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -20%;
  z-index: -2;
  background-image: url('https://images.unsplash.com/photo-1544025162-d76694265947?w=1800&q=80');
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gradient-hero);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 8rem 2rem 5rem;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  padding: .4rem 1.2rem;
  border-radius: 50px;
  font-size: .85rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(4px);
}
.badge-icon { color: var(--gold); }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 560px;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  display: block;
  margin-top: .3rem;
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  animation: bounce 2s infinite;
}
.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.3);
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── PRODUCTOS ───────────────────────────────────── */
.productos-section {
  padding: 6rem 0 8rem;
  background: var(--background);
}
.productos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.producto-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}
.producto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.producto-imagen {
  height: 260px;
  overflow: hidden;
  background: var(--muted);
}
.producto-imagen img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.producto-card:hover .producto-imagen img { transform: scale(1.05); }
.producto-body { padding: 1.5rem; }
.producto-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: .75rem;
}
.producto-body p {
  font-size: .9rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.ver-mas {
  font-size: .9rem;
  font-weight: 600;
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap .2s;
}
.ver-mas:hover { gap: .6rem; color: var(--wine-deep); }

/* ── PRODUCTO ESTRELLA ───────────────────────────── */
.producto-estrella-section {
  background: var(--gradient-wine);
  padding: 7rem 0;
  overflow: hidden;
}
.producto-estrella-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.estrella-titulo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.estrella-desc {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.estrella-badges {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.badge-item { display: flex; flex-direction: column; }
.badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.badge-text {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
  margin-top: 3px;
}
.badge-divider { width: 1px; height: 36px; background: rgba(255,255,255,.2); }
.estrella-imagen {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
  position: relative;
}
.estrella-imagen::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, hsla(35,75%,52%,.25), transparent 70%);
  z-index: -1;
}
.estrella-imagen img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ── NOSOTROS / HISTORIA ─────────────────────────── */
.nosotros-section {
  padding: 7rem 0;
  background: var(--background);
}
.nosotros-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.nosotros-imagen {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
}
.nosotros-imagen img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.nosotros-imagen-badge {
  position: absolute;
  bottom: 28px; right: 28px;
  background: var(--wine);
  color: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.nosotros-imagen-badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.nosotros-imagen-badge span {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}
.nosotros-body p {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.nosotros-body p strong { color: var(--charcoal); }
.nosotros-timeline { margin: 2rem 0; display: flex; flex-direction: column; gap: 0; }
.tl-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
  position: relative;
}
.tl-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px; top: 42px; bottom: 0;
  width: 1px; background: var(--border);
}
.tl-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--muted);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}
.tl-dot.active { background: var(--wine); border-color: var(--wine); }
.tl-body { padding-top: 6px; }
.tl-body strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  color: var(--charcoal);
  margin-bottom: 3px;
}
.tl-body p { font-size: .88rem; color: var(--muted-foreground); margin: 0; }

/* ── CALIDAD ─────────────────────────────────────── */
.calidad-section {
  padding: 7rem 0;
  background: var(--cream);
}
.calidad-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.calidad-imagen {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  aspect-ratio: 4/5;
}
.calidad-imagen img { width: 100%; height: 100%; object-fit: cover; }
.calidad-features { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.feat { display: flex; gap: 1rem; align-items: flex-start; }
.feat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.feat-body strong { display: block; font-weight: 600; color: var(--charcoal); margin-bottom: 3px; }
.feat-body p { font-size: .9rem; color: var(--muted-foreground); line-height: 1.6; margin: 0; }

/* ── TESTIMONIOS ─────────────────────────────────── */
.testimonios-section {
  padding: 7rem 0;
  background: var(--gradient-wine);
  color: #fff;
}
.testimonios-section .section-label { color: var(--gold); }
.testimonios-section .section-title { color: #fff; }
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.testimonio-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(4px);
}
.testimonio-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonio-text {
  font-size: .95rem;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonio-author { display: flex; align-items: center; gap: .75rem; }
.testimonio-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--wine);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonio-name { font-weight: 600; color: #fff; font-size: .95rem; }
.testimonio-lugar { font-size: .8rem; color: rgba(255,255,255,.55); }

/* ── CONTACTO ────────────────────────────────────── */
.contacto-section {
  padding: 7rem 0;
  background: var(--background);
}
.contacto-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contacto-info h2 { margin-bottom: .75rem; }
.contacto-info > p { color: var(--muted-foreground); margin-bottom: 2.5rem; line-height: 1.8; }
.ci-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.ci-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.ci-body strong { display: block; font-weight: 600; color: var(--charcoal); margin-bottom: 2px; font-size: .9rem; }
.ci-body p, .ci-body a { font-size: .9rem; color: var(--muted-foreground); }
.ci-body a:hover { color: var(--wine); }
.social-row { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 2rem; }
.soc-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: .6rem 1.2rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: all .25s;
}
.soc-btn:hover { background: var(--wine); color: #fff; border-color: var(--wine); }
.whatsapp-btn {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.whatsapp-btn:hover { background: #1ebe5d; border-color: #1ebe5d; color: #fff; }

/* Form */
.contact-form-box {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.1);
}
.contact-form-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.fg { margin-bottom: 1.1rem; }
.fg label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: .4rem;
  letter-spacing: .02em;
}
.fg input,
.fg textarea,
.fg select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: .625rem;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--charcoal);
  background: var(--background);
  transition: border-color .2s;
}
.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  outline: none;
  border-color: var(--wine);
  background: #fff;
}
.fg textarea { resize: vertical; min-height: 110px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; padding: 1rem; font-size: 1rem; margin-top: .5rem; border-radius: .625rem; }

/* ── FOOTER ──────────────────────────────────────── */
footer#colophon {
  background: var(--charcoal);
  color: rgba(255,255,255,.55);
}
.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3.5rem;
}
.footer-logo .logo-name { color: #fff; }
.footer-logo .logo-tagline { color: rgba(255,255,255,.4); }
.footer-brand-desc {
  font-size: .88rem;
  line-height: 1.8;
  margin-top: 1rem;
  max-width: 300px;
}
.footer-col-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}
.footer-links li { margin-bottom: .5rem; }
.footer-links a { font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .88rem;
  margin-bottom: .6rem;
}
.footer-contact-item a { color: rgba(255,255,255,.55); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 2rem;
  text-align: center;
  max-width: 100%;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-bottom span { color: var(--gold); }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .nosotros-inner,
  .calidad-inner,
  .producto-estrella-inner { grid-template-columns: 1fr; gap: 3rem; }
  .estrella-imagen { order: -1; }
  .nosotros-imagen { aspect-ratio: 16/9; }
  .productos-grid { grid-template-columns: repeat(2,1fr); }
  .testimonios-grid { grid-template-columns: 1fr 1fr; }
  .contacto-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .main-nav, .nav-cta-desktop { display: none; }
  .menu-toggle { display: flex; }
  .hero-stats { gap: 1.5rem; }
  .stat-number { font-size: 1.6rem; }
  .productos-grid { grid-template-columns: 1fr; }
  .testimonios-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .fg-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 1.75rem 1.25rem; }
  .estrella-badges { gap: 1rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { justify-content: center; }
}
