/* ============================================
   PRECOCINADOS TEIDE — Premium CSS
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Jost:wght@200;300;400;500;600&display=swap');

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --g:   #6b1222;
  --gd:  #3d0910;
  --gl:  #9b2535;
  --or:  #b8832a;
  --orl: #d4a44c;
  --cr:  #f7f0e6;
  --crd: #ece0ce;
  --br:  #1e0c05;
  --tx:  #1e0c05;
  --txs: #5c3520;
  --wh:  #fefcf8;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--wh);
  color: var(--tx);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cr); }
::-webkit-scrollbar-thumb { background: var(--g); }

/* ── GRAIN OVERLAY ── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .022;
  pointer-events: none;
  z-index: 9998;
}

/* ── TOP STRIPE ── */
body::before {
  content: '';
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--g) 0%, var(--or) 50%, var(--g) 100%);
  z-index: 9999;
}

/* ── CURSOR ── */
.cursor {
  width: 8px; height: 8px;
  background: var(--g);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
  mix-blend-mode: multiply;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--g);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  opacity: .45;
  transition: all .12s var(--ease-out-expo);
}
.cursor.hovering { width: 14px; height: 14px; background: var(--or); }
.cursor-ring.hovering { width: 52px; height: 52px; opacity: .25; }

/* ── NAV ── */
nav {
  position: fixed; top: 3px; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4vw; height: 76px;
  transition: background .4s, box-shadow .4s, height .4s;
}
nav.transparent { background: transparent; }
nav.solid {
  background: rgba(254,252,248,.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(107,18,34,.08), 0 8px 32px rgba(107,18,34,.06);
  height: 68px;
}
.nav-logo {
  height: 48px; width: auto;
  transition: height .3s, filter .3s;
}
nav.transparent .nav-logo { filter: brightness(0) invert(1); }
nav.solid .nav-logo { filter: none; }

.nav-links { display: flex; align-items: center; gap: 2.4rem; list-style: none; }
.nav-links a {
  font-size: .78rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; position: relative; padding-bottom: 4px;
  transition: color .25s;
}
nav.transparent .nav-links a { color: rgba(255,255,255,.85); }
nav.solid .nav-links a { color: var(--txs); }
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease-out-expo);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
nav.transparent .nav-links a:hover { color: white; }
nav.solid .nav-links a:hover { color: var(--g); }

.nav-cta {
  background: var(--g) !important;
  color: white !important;
  padding: .52rem 1.4rem;
  font-size: .72rem !important;
  letter-spacing: .18em !important;
  border-radius: 1px;
  transition: background .25s, transform .15s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gd) !important; transform: translateY(-1px) !important; }

.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--g); transition: .3s; }
nav.transparent .nav-burger span { background: white; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: -5%;
  background-size: cover; background-position: center 40%;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(170deg,
    rgba(30,12,5,.75) 0%,
    rgba(61,9,16,.5) 45%,
    rgba(0,0,0,.72) 100%);
}
.hero-overlay-2 {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,12,5,.9) 0%, transparent 40%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 2rem;
  max-width: 820px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: .7rem; font-weight: 400; letter-spacing: .3em; text-transform: uppercase;
  color: var(--orl); margin-bottom: 2rem;
  opacity: 0; transform: translateY(12px);
  animation: reveal .8s .2s var(--ease-out-expo) forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 30px; height: .5px; background: var(--orl);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.8rem, 8vw, 7.5rem);
  font-weight: 300; line-height: .92; letter-spacing: -.02em;
  color: #fff; margin-bottom: 1.6rem;
  opacity: 0; transform: translateY(20px);
  animation: reveal .9s .35s var(--ease-out-expo) forwards;
}
.hero-title strong { font-weight: 700; }
.hero-title em { font-style: italic; color: var(--orl); font-weight: 300; }
.hero-line {
  width: 40px; height: 1px; background: var(--orl);
  margin: 0 auto 1.6rem;
  opacity: 0; transform: scaleX(0);
  animation: reveal-line .6s .6s var(--ease-out-expo) forwards;
}
@keyframes reveal-line {
  to { opacity: 1; transform: scaleX(1); }
}
.hero-sub {
  font-size: clamp(.9rem, 1.4vw, 1.05rem);
  font-weight: 300; color: rgba(255,255,255,.68);
  max-width: 500px; margin: 0 auto 3rem; line-height: 1.8; letter-spacing: .04em;
  opacity: 0; transform: translateY(12px);
  animation: reveal .8s .5s var(--ease-out-expo) forwards;
}
.hero-actions {
  display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; transform: translateY(12px);
  animation: reveal .8s .65s var(--ease-out-expo) forwards;
}

@keyframes reveal {
  to { opacity: 1; transform: translateY(0) translateX(0) scaleX(1); }
}

/* ── BUTTONS ── */
.btn {
  font-family: 'Jost', sans-serif; font-weight: 500;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 2.6rem; border-radius: 1px;
  transition: all .3s var(--ease-out-expo);
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.06);
  transform: translateX(-101%);
  transition: transform .3s var(--ease-out-expo);
}
.btn:hover::before { transform: translateX(0); }

.btn-solid { background: var(--g); color: #fff; border: 1px solid var(--g); }
.btn-solid:hover { background: var(--gd); border-color: var(--gd); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(107,18,34,.35); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }
.btn-ghost:hover { border-color: rgba(255,255,255,.9); transform: translateY(-2px); }
.btn-dark { background: var(--gd); color: #fff; border: 1px solid var(--gd); }
.btn-dark:hover { background: var(--g); border-color: var(--g); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(107,18,34,.3); }
.btn-outline { background: transparent; color: var(--g); border: 1px solid var(--g); }
.btn-outline:hover { background: var(--g); color: #fff; transform: translateY(-2px); }
.btn svg { width: 14px; height: 14px; transition: transform .25s; }
.btn:hover svg { transform: translateX(3px); }

/* ── SCROLL INDICATOR ── */
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.4); font-size: .63rem; letter-spacing: .25em; text-transform: uppercase;
  opacity: 0; animation: reveal .8s 1.2s ease forwards;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 48px; background: rgba(255,255,255,.2);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; right: 0;
  height: 100%; background: var(--orl);
  animation: scroll-drop 2s 1.5s ease-in-out infinite;
}
@keyframes scroll-drop {
  0% { top: -100%; } 100% { top: 100%; }
}

/* ── STRIP ── */
.strip {
  background: var(--g); padding: 0 4vw;
  display: grid; grid-template-columns: repeat(4,1fr);
  border-bottom: 3px solid var(--gd);
}
.strip-item {
  color: #fff; text-align: center; padding: 2rem 1rem;
  border-right: 1px solid rgba(255,255,255,.1);
  position: relative; overflow: hidden;
  transition: background .3s;
}
.strip-item:last-child { border-right: none; }
.strip-item:hover { background: var(--gd); }
.strip-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 600; color: var(--orl);
  display: block; line-height: 1; margin-bottom: .2rem;
}
.strip-label { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; opacity: .65; }

/* ── SECTIONS ── */
section { padding: 7rem 6vw; }
.section-label {
  font-size: .65rem; font-weight: 500; letter-spacing: .28em; text-transform: uppercase;
  color: var(--or); display: flex; align-items: center; gap: .8rem; margin-bottom: .8rem;
}
.section-label::before { content: ''; width: 20px; height: 1px; background: var(--or); }
h2.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300; line-height: 1.05; color: var(--gd); margin-bottom: 1.5rem;
  letter-spacing: -.01em;
}
h2.section-title strong { font-weight: 700; }
h2.section-title em { font-style: italic; color: var(--gl); font-weight: 300; }

/* ── NOSOTROS ── */
.nosotros {
  background: var(--wh);
  display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center;
}
.nosotros-text p {
  font-size: 1rem; line-height: 1.95; color: var(--txs);
  margin-bottom: 1.3rem; font-weight: 300;
}
.nosotros-visual { position: relative; }
.quote-box {
  background: var(--cr); padding: 4rem 3.5rem;
  position: relative; box-shadow: inset 0 -1px 0 rgba(107,18,34,.08);
  overflow: hidden;
}
.quote-box::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif; font-size: 12rem; font-weight: 700;
  color: var(--g); opacity: .07;
  position: absolute; top: -2rem; left: 1rem; line-height: 1; pointer-events: none;
}
.quote-box::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--g), var(--or));
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-style: italic; font-weight: 300;
  color: var(--g); line-height: 1.45; position: relative; z-index: 1;
}
.quote-rule { width: 36px; height: 1px; background: var(--or); margin: 1.6rem 0; }
.quote-author { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--txs); }

/* ── FEATURED PRODUCTS ── */
.productos { background: var(--cr); position: relative; overflow: hidden; }
.productos::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--g), var(--or), var(--g));
}
.productos-head { margin-bottom: 4.5rem; }
.productos-head .section-label { justify-content: center; }
.productos-head .section-title { text-align: center; }

.prod-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto; gap: 1.5px;
  background: var(--crd);
}
.prod-card {
  background: var(--wh); overflow: hidden;
  position: relative; cursor: pointer;
  transition: z-index 0s;
}
.prod-card.featured {
  grid-column: span 2; grid-row: span 1;
}
.prod-img {
  position: relative; overflow: hidden;
  background: var(--crd);
}
.prod-card:not(.featured) .prod-img { height: 240px; }
.prod-card.featured .prod-img { height: 380px; }
.prod-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease-out-expo), filter .5s;
  filter: saturate(.9);
}
.prod-card:hover .prod-img img {
  transform: scale(1.07);
  filter: saturate(1.1);
}
.prod-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,12,5,.85) 0%, transparent 55%);
  opacity: 0; transition: opacity .4s;
}
.prod-card:hover .prod-overlay { opacity: 1; }
.prod-badge {
  position: absolute; top: 1.2rem; left: 1.2rem;
  background: var(--g); color: #fff;
  font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
  padding: .3rem .8rem; font-weight: 500; z-index: 2;
}
.prod-action {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0; transition: all .3s var(--ease-out-expo);
  white-space: nowrap; z-index: 2;
}
.prod-card:hover .prod-action {
  opacity: 1; transform: translateX(-50%) translateY(0);
}
.prod-body { padding: 1.6rem 1.8rem 2rem; }
.prod-cat { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--or); margin-bottom: .4rem; }
.prod-name {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600;
  color: var(--gd); line-height: 1.2; margin-bottom: .5rem;
}
.prod-desc { font-size: .85rem; color: var(--txs); line-height: 1.7; font-weight: 300; }

/* ── CATALOG ── */
.catalog-section { background: var(--wh); }
.catalog-head { text-align: center; margin-bottom: 4rem; }
.catalog-head .section-label { justify-content: center; }

.catalog-layout {
  display: grid; grid-template-columns: 1fr 3px 1fr 3px 1fr; gap: 0;
  border: 1px solid var(--crd);
}
.catalog-divider { background: var(--crd); }
.catalog-col { padding: 3rem 2.5rem; }
.catalog-col-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600;
  color: var(--g); margin-bottom: 1.5rem; padding-bottom: .8rem;
  border-bottom: 1px solid var(--crd);
  display: flex; align-items: center; gap: .6rem;
}
.catalog-col ul { list-style: none; }
.catalog-col ul li {
  font-size: .88rem; color: var(--txs); padding: .45rem 0;
  border-bottom: 1px solid rgba(0,0,0,.04);
  display: flex; align-items: center; gap: .7rem;
  font-weight: 300; transition: color .2s, padding-left .2s;
  cursor: default;
}
.catalog-col ul li::before { content: '·'; color: var(--or); font-size: 1.1rem; flex-shrink: 0; }
.catalog-col ul li:hover { color: var(--g); padding-left: .3rem; }
.catalog-note {
  margin-top: 1.8rem; padding: 1.6rem;
  background: var(--cr); border-radius: 0 4px 4px 0;
  font-size: .83rem; color: var(--txs); line-height: 1.75; font-weight: 300;
}
.catalog-note a {
  display: inline-block; margin-top: .8rem;
  font-size: .68rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase;
  color: var(--g); text-decoration: none; border-bottom: 1px solid var(--g);
  padding-bottom: 1px; transition: opacity .2s;
}
.catalog-note a:hover { opacity: .7; }

/* ── VENTAJAS ── */
.ventajas { background: var(--gd); position: relative; overflow: hidden; }
.ventajas::before {
  content: 'PT';
  font-family: 'Cormorant Garamond', serif; font-size: 30vw; font-weight: 700;
  color: rgba(255,255,255,.025);
  position: absolute; right: -2vw; bottom: -4vw; line-height: 1;
  pointer-events: none; letter-spacing: -.05em;
}
.ventajas .section-label { color: var(--orl); }
.ventajas .section-label::before { background: var(--orl); }
.ventajas h2.section-title { color: #fff; }
.ventajas-intro { font-size: 1rem; color: rgba(255,255,255,.55); max-width: 500px; margin-bottom: 4rem; line-height: 1.8; font-weight: 300; }

.ventajas-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px; background: rgba(255,255,255,.06); }
.ventaja {
  padding: 3rem 2.5rem;
  background: var(--gd);
  transition: background .3s;
  position: relative; overflow: hidden;
}
.ventaja::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--g), var(--or));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease-out-expo);
}
.ventaja:hover::before { transform: scaleX(1); }
.ventaja:hover { background: rgba(107,18,34,.3); }
.ventaja-num {
  font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 700;
  color: rgba(255,255,255,.06); line-height: 1; margin-bottom: 1.5rem;
  transition: color .3s;
}
.ventaja:hover .ventaja-num { color: rgba(212,164,76,.15); }
.ventaja h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600;
  color: #fff; margin-bottom: .8rem;
}
.ventaja p { font-size: .87rem; color: rgba(255,255,255,.5); line-height: 1.75; font-weight: 300; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--cr); padding: 7rem 6vw;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
  position: relative;
}
.cta-band::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, var(--g), var(--or));
}
.cta-band-text .section-label { margin-bottom: 1rem; }
.cta-band-text p { font-size: .97rem; color: var(--txs); line-height: 1.85; font-weight: 300; margin-bottom: 2.5rem; }
.cta-band-visual {
  background: var(--g); padding: 3rem;
  position: relative; overflow: hidden;
}
.cta-band-visual::after {
  content: '"Donde La Calidad se nota"';
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.8rem; font-weight: 300;
  color: rgba(255,255,255,.12);
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  left: 1.5rem; text-align: right; line-height: 1.3;
  pointer-events: none;
}
.cta-band-visual h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300;
  color: rgba(255,255,255,.85); margin-bottom: 1.8rem; position: relative; z-index: 1;
}
.cta-band-visual h3 strong { font-weight: 700; color: #fff; }
.cta-contact-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; position: relative; z-index: 1; }
.cta-contact-row:last-child { margin-bottom: 0; }
.cta-icon {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cta-icon svg { width: 15px; height: 15px; stroke: var(--orl); fill: none; stroke-width: 1.5; }
.cta-contact-row span { font-size: .88rem; color: rgba(255,255,255,.65); font-weight: 300; }
.cta-contact-row a { font-size: .88rem; color: rgba(255,255,255,.85); text-decoration: none; transition: color .2s; }
.cta-contact-row a:hover { color: var(--orl); }

/* ── CONTACT ── */
.contacto { background: var(--wh); display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-info .section-title { margin-bottom: 3rem; }
.contact-row {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.6rem 0; border-bottom: 1px solid var(--crd);
}
.contact-row:last-of-type { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px; background: var(--g); border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.contact-row:hover .contact-icon { background: var(--gd); transform: scale(1.05); }
.contact-icon svg { width: 17px; height: 17px; stroke: #fff; fill: none; stroke-width: 1.5; }
.contact-row h4 { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--or); margin-bottom: .3rem; }
.contact-row p, .contact-row a { font-size: .92rem; color: var(--txs); text-decoration: none; font-weight: 300; transition: color .2s; }
.contact-row a:hover { color: var(--g); }

.contact-form { background: var(--cr); padding: 3rem; }
.form-label-group { margin-bottom: 1.3rem; }
.form-label-group label {
  display: block; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--txs); margin-bottom: .55rem; font-weight: 500;
}
.form-label-group input,
.form-label-group textarea,
.form-label-group select {
  width: 100%; padding: .85rem 1.1rem;
  border: 1px solid var(--crd); border-bottom: 2px solid var(--crd);
  background: var(--wh); font-family: 'Jost', sans-serif;
  font-size: .9rem; color: var(--tx); outline: none; border-radius: 0;
  transition: border-color .2s, box-shadow .2s;
}
.form-label-group input:focus,
.form-label-group textarea:focus { border-color: var(--g); border-bottom-color: var(--g); box-shadow: 0 2px 0 var(--g); }
.form-label-group textarea { height: 100px; resize: vertical; }
.form-submit {
  width: 100%; background: var(--g); color: #fff; border: none;
  font-family: 'Jost', sans-serif; font-size: .72rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; padding: 1.1rem;
  cursor: pointer; transition: background .25s, transform .15s; border-radius: 0;
  display: flex; align-items: center; justify-content: center; gap: .7rem;
}
.form-submit:hover { background: var(--gd); transform: translateY(-1px); }
.form-submit svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ── FOOTER ── */
footer { background: var(--br); padding: 5rem 6vw 2rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand { }
.footer-logo { height: 50px; width: auto; filter: brightness(0) invert(1); opacity: .7; display: block; margin-bottom: 1.2rem; }
.footer-tagline { font-size: .83rem; color: rgba(255,255,255,.35); line-height: 1.8; font-weight: 300; max-width: 260px; }
.footer-social { display: flex; gap: .8rem; margin-top: 1.5rem; }
.footer-social a {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; border-radius: 50%;
  transition: border-color .2s, background .2s;
}
.footer-social a:hover { border-color: var(--or); background: rgba(184,131,42,.1); }
.footer-social svg { width: 14px; height: 14px; fill: rgba(255,255,255,.45); transition: fill .2s; }
.footer-social a:hover svg { fill: var(--orl); }

.footer-col h5 {
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--orl); margin-bottom: 1.4rem; font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a {
  font-size: .84rem; color: rgba(255,255,255,.35); text-decoration: none;
  font-weight: 300; transition: color .2s;
}
.footer-col ul li a:hover { color: rgba(255,255,255,.8); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 1.8rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem;
}
.footer-bottom span { font-size: .72rem; color: rgba(255,255,255,.22); font-weight: 300; }

/* ── WHATSAPP ── */
#wa {
  position: fixed; bottom: 2.2rem; right: 2.2rem;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .25s var(--ease-out-expo), box-shadow .25s;
  z-index: 9000; text-decoration: none;
}
#wa:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,.55); }
#wa svg { width: 26px; height: 26px; fill: #fff; }

/* ── REVEAL ANIMATIONS ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out-expo), transform .7s var(--ease-out-expo);
}
[data-reveal].visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }
[data-reveal-delay="5"] { transition-delay: .5s; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .nosotros, .contacto, .cta-band { grid-template-columns: 1fr; gap: 3rem; }
  .cta-band::before { display: none; }
  .ventajas-grid, .prod-grid { grid-template-columns: 1fr; background: none; gap: 1.5rem; }
  .prod-card.featured { grid-column: span 1; }
  .prod-card.featured .prod-img { height: 260px; }
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-divider { display: none; }
  .strip { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  nav .nav-links { display: none; }
  .nav-burger { display: flex; }
  section { padding: 4.5rem 5vw; }
}
@media (max-width: 600px) {
  .hero-title { font-size: clamp(3rem, 11vw, 4.5rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-top { grid-template-columns: 1fr; }
  .strip { grid-template-columns: 1fr 1fr; }
  .prod-grid { gap: 1rem; }
}

/* ── MOBILE NAV OPEN ── */
nav .nav-links.open {
  display: flex !important; flex-direction: column; gap: 0;
  position: fixed; top: 71px; left: 0; right: 0;
  background: var(--wh); padding: .5rem 0 1rem;
  border-bottom: 1px solid var(--crd);
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
}
nav .nav-links.open a { padding: .9rem 5vw; color: var(--txs) !important; font-size: .85rem; border-bottom: 1px solid var(--crd); }
nav .nav-links.open .nav-cta { margin: 1rem 5vw 0; text-align: center; background: var(--g) !important; }

/* ============================================
   TOPBAR (barra info superior)
   ============================================ */
.topbar {
  background: var(--gd);
  color: var(--wh);
  font-size: .78rem;
  padding: .55rem 0;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.topbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--wh);
  text-decoration: none;
  transition: color .2s;
  letter-spacing: .02em;
}
.topbar-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar-item:hover { color: var(--orl); }
.topbar-sep { opacity: .35; }

#nav { top: 40px; }

@media (max-width: 720px) {
  .topbar { font-size: .72rem; padding: .5rem 0; }
  .topbar-inner { gap: .6rem; }
  .topbar-sep { display: none; }
  #nav { top: 60px; }
}

/* ============================================
   HOW IT WORKS (Cómo funciona)
   ============================================ */
.how-it-works {
  background: var(--cr);
  padding: 6rem 4vw;
  border-top: 1px solid var(--crd);
}
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}
.how-step {
  background: var(--wh);
  padding: 2.5rem 2rem;
  border-radius: 3px;
  position: relative;
  transition: transform .3s, box-shadow .3s;
  border-top: 3px solid var(--or);
}
.how-step:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(107,18,34,.08); }
.how-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  color: var(--or);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.how-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gd);
  margin-bottom: .8rem;
  font-weight: 500;
}
.how-step p { color: var(--txs); font-size: .92rem; line-height: 1.6; }

/* ============================================
   FAQ
   ============================================ */
.faq { padding: 6rem 4vw; background: var(--wh); }
.faq-inner { max-width: 900px; margin: 0 auto; }
.faq-list { margin-top: 3rem; }
.faq-item {
  border-bottom: 1px solid var(--crd);
  padding: 1.4rem 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--gd);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.8rem;
  color: var(--or);
  font-weight: 300;
  transition: transform .3s;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--g); }
.faq-item p {
  margin-top: 1rem;
  color: var(--txs);
  font-size: .95rem;
  line-height: 1.75;
  padding-right: 2.5rem;
}

@media (max-width: 640px) {
  .how-it-works, .faq { padding: 4rem 4vw; }
  .faq-item summary { font-size: 1.15rem; }
}


/* ── Accesibilidad: respetar preferencia de movimiento reducido ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}


/* ── Skip-link (accesibilidad teclado) ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  background: var(--g);
  color: var(--wh);
  padding: .8rem 1.2rem;
  border-radius: 4px;
  font-size: .85rem;
  font-family: 'Jost', sans-serif;
  z-index: 10000;
  text-decoration: none;
  transition: top .2s ease-out;
}
.skip-link:focus {
  top: 8px;
  outline: 2px solid var(--orl);
  outline-offset: 2px;
}

/* ── Tap targets ≥44×44 en móvil (WCAG 2.5.5) ── */
@media (max-width: 768px) {
  a.btn, button, .qty button, .nav a, .topbar-item {
    min-height: 44px;
    min-width: 44px;
  }
  a[href^="tel:"], a[href^="mailto:"], a[href^="https://wa.me/"] {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}
