/* ── NAV ─────────────────────────────────────────────────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 900; background: rgba(248,247,242,.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); box-shadow: 0 1px 16px rgba(0,0,0,.05); }
.nav-stripe { height: 5px; background: var(--stripe); }
.nav-inner { height: calc(var(--nav-h) - 5px); display: flex; align-items: center; justify-content: space-between; padding: 0 5vw; transition: height .3s ease; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 52px; width: auto; transition: height .3s ease; }
.nav-logo-text { font-family: 'Oswald', sans-serif; font-size: 1.4rem; font-weight: 700; letter-spacing: .12em; line-height: 1; transition: font-size .3s ease; }
.nav-logo-text .et { color: var(--red); }
.ca { color: var(--white); }
.nav-logo-sub { display: block; font-family: 'Montserrat', sans-serif; font-size: .8rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: rgba(26,26,26,.55); margin-top: 2px; overflow: hidden; max-height: 36px; opacity: 1; transition: max-height .3s ease, opacity .25s ease; }

/* ── NAV SCROLLED ────────────────────────────────────────── */
.nav.scrolled .nav-inner     { height: 43px; }   /* 48px total - 5px stripe */
.nav.scrolled .nav-logo img  { height: 34px; }
.nav.scrolled .nav-logo-text { font-size: 1.2rem; }
.nav.scrolled              { box-shadow: 0 2px 20px rgba(0,0,0,.1); }

/* Subtítulo: siempre visible en desktop, se oculta en mobile al scrollear */
@media (max-width: 900px) {
  .nav.scrolled .nav-logo-sub { max-height: 0; opacity: 0; }
}
.nav-links { display: flex; gap: 0; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: #374151; font-family: 'Montserrat', sans-serif; font-size: .75rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: 8px 14px; position: relative; transition: color .2s; }
.nav-links a::after { content: ''; position: absolute; bottom: -1px; left: 14px; right: 14px; height: 2px; background: var(--red); transform: scaleX(0); transition: transform .2s; transform-origin: left; }
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-cart-btn { background: var(--black); color: #fff; border: none; cursor: pointer; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; position: relative; transition: background .2s, transform .2s; text-decoration: none; }
.nav-cart-btn:hover { background: var(--green); transform: scale(1.08); }
.cart-badge { position: absolute; top: -4px; right: -4px; background: var(--green); color: var(--black); font-family: 'Montserrat', sans-serif; font-size: .58rem; font-weight: 700; width: 17px; height: 17px; border-radius: 50%; display: none; align-items: center; justify-content: center; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); transition: .3s; }

/* ── PAGE HEADER ─────────────────────────────────────────── */
.page-header { padding: calc(var(--nav-h) + 72px) 5vw 72px; background: var(--black); position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(242,226,5,.07) 1.5px, transparent 1.5px); background-size: 20px 20px; pointer-events: none; }
.page-header-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.page-header-eyebrow { font-family: 'Montserrat', sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.page-header-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--gold); }
.page-header-eyebrow-green { font-family: 'Montserrat', sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.page-header-eyebrow-green::before { content: ''; display: block; width: 24px; height: 2px; background: var(--green); }
.page-header-title { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: clamp(3.5rem, 8vw, 7rem); text-transform: uppercase; color: var(--white); margin-bottom: 20px; line-height: .88; }
.page-header-desc { font-family: 'Open Sans', sans-serif; font-size: clamp(1rem, 1.8vw, 1.15rem); color: rgba(255,255,255,.4); font-weight: 300; max-width: 580px; line-height: 1.75; padding: 8px; }
.page-header-accent { position: absolute; left: 20rem; top: 50%; transform: translateY(-50%); font-family: 'Oswald', sans-serif; font-weight: 700; font-size: clamp(8rem, 18vw, 16rem); color: rgba(255,255,255,.1); text-transform: uppercase; pointer-events: none; user-select: none; line-height: 1; }

/* ── DIVIDERS ────────────────────────────────────────────── */
.divider-gold   { height: 0; border: none; }
.divider-stripe { height: 4px; background: var(--stripe); border: none; margin: 0; }

/* ── MARCO IMAGEN ────────────────────────────────────────── */
.marco-imagen { border: 4px solid; border-image-source: linear-gradient(to top right, var(--blue), var(--red), var(--gold)); border-image-slice: 1; box-shadow: 0 6px 15px rgba(0,0,0,0.1); max-width: 100%; height: auto; }

/* ── BLOCKQUOTE ──────────────────────────────────────────── */
blockquote { border-left: 5px solid var(--green); padding-left: 15px; font-style: italic; font-family: 'Open Sans', sans-serif; font-size: 1rem; color: var(--muted); font-weight: 500; line-height: 1.85; max-width: 640px; }
blockquote cite { display: block; margin-top: 10px; font-size: 1rem; font-style: normal; font-weight: 700; color: var(--green); text-align: right; letter-spacing: 1px; }

/* ── INSTAGRAM FRAME ─────────────────────────────────────── */
iframe.instagram-media { min-width: 0 !important; max-width: 100% !important; width: 100% !important; }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--black); }
.footer-main { max-width: 1200px; margin: 0 auto; padding: 64px 5vw 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand-name { font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; line-height: 1; margin-bottom: 2px; }
.footer-brand-name .et { color: var(--red); }
.footer-brand-sub { font-family: 'Montserrat', sans-serif; font-size: .82rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 14px; }
.footer-brand-desc { font-size: .85rem; color: #94a3b8; line-height: 1.7; margin-bottom: 20px; max-width: 260px; }
.footer-col-title { font-family: 'Montserrat', sans-serif; font-size: .9rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.55); font-weight: 700; margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: .88rem; color: #94a3b8; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 20px 5vw; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-family: 'Montserrat', sans-serif; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: #ffffff; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { color: #475569; transition: color .2s; display: flex; }
.footer-social a:hover { color: var(--amber); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

/* ── EMAIL COPY TOAST ────────────────────────────────────── */
.copy-toast { position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(16px); z-index: 9999; background: var(--black); color: #fff; font-family: 'Montserrat', sans-serif; font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 10px 22px; border-left: 3px solid var(--green); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; white-space: nowrap; }
.copy-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── EMAIL COPY TOOLTIP (hover) ──────────────────────────── */
.js-copy-email { position: relative; cursor: pointer; }
.js-copy-email::after { content: 'Click para copiar'; position: absolute; bottom: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(4px); background: var(--black); color: #fff; font-family: 'Montserrat', sans-serif; font-size: .62rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; padding: 5px 10px; pointer-events: none; opacity: 0; transition: opacity .18s, transform .18s; border-left: 2px solid var(--green); }
.js-copy-email:hover::after { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── WA FLOAT ────────────────────────────────────────────── */
.wa-float { position: fixed; bottom: 26px; right: 26px; z-index: 800; width: 52px; height: 52px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); text-decoration: none; animation: waFloat 4s ease-in-out infinite; transition: transform .2s, box-shadow .2s; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); }
@keyframes waFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }
.wa-float svg { width: 26px; height: 26px; fill: #fff; }

/* ── BACK TO TOP ─────────────────────────────────────────── */
.back-to-top { position: fixed; bottom: 88px; right: 31px; z-index: 800; width: 44px; height: 44px; border-radius: 50%; background: var(--black); border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; transform: translateY(8px); }
.back-to-top svg { width: 18px; height: 18px; }
.back-to-top:hover { background: var(--red); border-color: var(--red); transform: translateY(0) scale(1.08); }
.btt-visible { opacity: 1; pointer-events: all; transform: translateY(0); }

