/* ═══════════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════════ */
:root {
  --orange:           #E87722;
  --orange-dark:      #B85600;
  --orange-bg:        rgba(232,119,34,0.10);
  --orange-border:    rgba(232,119,34,0.28);

  --bg-body:          #F5F4F2;
  --bg-white:         #FFFFFF;
  --bg-dark:          #1C1A18;
  --bg-orange-strip:  #E87722;
  --bg-gray:          #f9f9f9;
  --bg-gray2:         #dbdbdb;

  --text-dark:        #1A1A1A;
  --text-mid:         #4A4A4A;
  --text-muted:       #7A7A7A;
  --text-white:       #FFFFFF;
  --text-white-70:    rgba(255,255,255,0.70);
  --text-white-45:    rgba(255,255,255,0.45);

  --radius:    16px;
  --radius-lg: 24px;
  --ease:      cubic-bezier(0.4,0,0.2,1);
  --dur:       0.34s;
  --font-d:    Arial, sans-serif;
  --font-b:    Arial, sans-serif;
  --max-w:     1120px;
}

/* ═══════════════════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--bg-body);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ═══════════════════════════════════════════════════════════
   HELPERS
═══════════════════════════════════════════════════════════ */
.wrap {
  width: 92%;
  max-width: var(--max-w);
  margin-inline: auto;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-d);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-h {
  font-family: var(--font-d);
  font-size: clamp(1.75rem, 3.2vw, 2.65rem);
  font-weight: 800;
  line-height: 1.11;
  letter-spacing: -0.03em;
}
.hl { color: var(--orange); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 0.90rem;
  letter-spacing: 0.03em;
  padding: 23px 38px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,119,34,0.35); }
.btn-white  { background: #fff; color: var(--orange); }
.btn-white:hover { background: #f0ede8; transform: translateY(-2px); }

/* Scroll reveal */
.rv { opacity: 0; transform: translateY(28px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv.d1 { transition-delay: 0.08s; }
.rv.d2 { transition-delay: 0.16s; }
.rv.d3 { transition-delay: 0.24s; }
.rv.d4 { transition-delay: 0.32s; }

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 800;
  padding: 15px 0;
  background: var(--bg-white);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: padding var(--dur) var(--ease);
}
.navbar .wrap { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 38px; width: auto; display: block; }
.nav-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-b);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 7px 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(0,0,0,0.15);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav-login-btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.nav-login-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  background-image: url('../Hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 110px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  z-index: 1;
}
.hero .wrap {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-title {
  font-family: var(--font-d);
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text-white-70);
  max-width: 460px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   ESTADÍSTICAS
═══════════════════════════════════════════════════════════ */
.stats-start {
  background: var(--bg-white);
  padding: 64px 0;
  text-align: center;
}
.hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.stat-card {
  background: var(--bg-gray);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
  position: relative; overflow: hidden;
  text-align: center;
}
.stat-card:hover { border-color: var(--orange-border); transform: translateY(-4px); }
.stat-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.stat-icon img { width: 52px; height: 52px; object-fit: contain; }
.stat-num { font-family: var(--font-d); font-size: 1.75rem; font-weight: 800; color: var(--text-dark); line-height: 1; margin-bottom: 6px; }
.stat-lbl { font-size: 0.78rem; color: var(--text-dark); line-height: 1.42; }

/* ═══════════════════════════════════════════════════════════
   TIENDAS
═══════════════════════════════════════════════════════════ */
.sec-tiendas {
  background: linear-gradient(135deg, #004a8f 0%, #0072C2 55%, #1a8fd1 100%);
  padding: 72px 0;
  text-align: center;
}
.tiendas-title {
  font-family: var(--font-d);
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.tiendas-sub {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.80);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.65;
}
.tiendas-stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
  align-items: stretch;
}
.tiendas-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 30px 22px;
  transition: transform var(--dur) var(--ease);
}
.tiendas-card:hover { transform: translateY(-4px); }
.tiendas-sep {
  display: flex;
  align-items: stretch;
  gap: 5px;
  padding: 16px 10px;
}
.tiendas-sep span {
  display: block;
  width: 2px;
  background: rgba(255,255,255,0.30);
  border-radius: 2px;
}
.tiendas-icon {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.tiendas-icon svg { width: 24px; height: 24px; fill: #fff; }
.tiendas-num {
  font-family: var(--font-d);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1;
}
.tiendas-lbl {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.48;
}

/* ═══════════════════════════════════════════════════════════
   ¿EMPEZAMOS? – gray strip
═══════════════════════════════════════════════════════════ */
.strip-start {
  background: var(--bg-gray2);
  padding: 64px 0;
  text-align: center;
}
.strip-start h2 {
  font-family: var(--font-d);
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #E0832F;
  margin-bottom: 10px;
}

/* ═══════════════════════════════════════════════════════════
   STRIP ALCANCE
═══════════════════════════════════════════════════════════ */
.strip-start2 {
  background: var(--bg-white);
  padding: 64px 0;
  text-align: center;
}
.strip-start2-title {
  font-family: var(--font-d);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.strip-start2-sub {
  font-family: var(--font-b);
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.70;
  margin-bottom: 32px;
}

/* ═══════════════════════════════════════════════════════════
   ¿SABÍAS QUE? / ¿POR QUÉ?
═══════════════════════════════════════════════════════════ */
.strip-know {
  background: var(--bg-gray2);
  padding: 64px 0;
  text-align: center;
}
.strip-know h2 {
  font-family: var(--font-d);
  font-size: clamp(1.35rem, 2.6vw, 2.0rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  line-height: 1.25;
}

/* ═══════════════════════════════════════════════════════════
   CHANNELS
═══════════════════════════════════════════════════════════ */
.sec-channels {
  background: var(--bg-white);
  padding: 96px 0;
}
.ch-intro { text-align: center; margin-bottom: 56px; }
.ch-intro .section-h { margin-bottom: 12px; }
.ch-intro p { font-size: 0.95rem; color: var(--text-mid); max-width: 580px; margin-inline: auto; line-height: 1.70; }
.channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.ch-card {
  background: #FDFCFA;
  border: 1px solid #E8E3DA;
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.ch-card:hover { border-color: var(--orange-border); box-shadow: 0 12px 36px rgba(232,119,34,0.09); transform: translateY(-4px); }
.ch-icon {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.ch-icon img { width: 50px; height: 50px; object-fit: contain; }
.ch-name { font-family: var(--font-d); font-size: 1.17rem; font-weight: 800; color: var(--text-dark); letter-spacing: -0.02em; margin-bottom: 9px; }
.ch-desc { font-size: 0.90rem; line-height: 1.64; color: var(--text-mid); }

/* ═══════════════════════════════════════════════════════════
   PROBLEM
═══════════════════════════════════════════════════════════ */
.sec-problem {
  background: var(--bg-white);
  padding: 96px 0;
}
.sec-problem .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.prob-sub {
  font-size: 1.2rem;
  color: var(--orange);
  margin-bottom: 22px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.prob-left .section-h {
  color: var(--text-dark);
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  text-align: center;
}
.tensions { display: flex; flex-direction: column; gap: 16px; }
.tension {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #FAFAF8;
  border: 1px solid #E8E3DA;
  border-radius: var(--radius);
  padding: 20px 18px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.tension:hover { border-color: var(--orange-border); box-shadow: 0 4px 20px rgba(232,119,34,0.08); }
.t-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(232,119,34,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.t-icon img { width: 20px; height: 20px; object-fit: contain; }
.t-text { font-size: 0.91rem; line-height: 1.58; color: var(--text-mid); }

/* ═══════════════════════════════════════════════════════════
   WHY / FIRST-PARTY DATA
═══════════════════════════════════════════════════════════ */
.sec-why {
  background: var(--bg-body);
  padding: 96px 0;
}
.sec-why .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.why-left h2 {
  font-family: var(--font-d);
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.why-left p {
  font-size: 0.95rem; line-height: 1.74; color: var(--text-mid); margin-bottom: 12px;
}
.why-right h3 {
  font-family: var(--font-d);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 18px;
}
.stats-subtitle {
  font-family: var(--font-d);
  font-size: 22px;
  min-width: 60%;
  max-width: 60%;
  margin-left: 20%;
  padding-top: 30px;
  padding-bottom: 30px;
}
.signals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #DAD5CE;
  border-radius: var(--radius);
  overflow: hidden;
}
.sig-cell {
  background: var(--bg-white);
  padding: 18px 16px;
  display: flex; align-items: center; gap: 11px;
  transition: background var(--dur) var(--ease);
}
.sig-cell:hover { background: #FFF8F2; }
.sig-check {
  width: 22px; height: 22px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sig-check svg { width: 11px; height: 11px; fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.sig-text { font-size: 0.87rem; color: var(--text-mid); line-height: 1.35; }

/* ═══════════════════════════════════════════════════════════
   CTA – orange strip
═══════════════════════════════════════════════════════════ */
.sec-cta {
  background: var(--bg-orange-strip);
  padding: 76px 0;
}
.sec-cta .wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.cta-text h2 {
  font-family: var(--font-d);
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.cta-text p { font-size: 0.95rem; color: rgba(255,255,255,0.80); line-height: 1.65; }
.cta-mail {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.86rem; color: rgba(255,255,255,0.72);
  margin-top: 13px;
  transition: color var(--dur) var(--ease);
}
.cta-mail:hover { color: #fff; }
.cta-mail svg { width: 15px; height: 15px; fill: currentColor; }

/* ═══════════════════════════════════════════════════════════
   SECCIONES EXTRA
═══════════════════════════════════════════════════════════ */
.sec-extra {
  padding: 80px 0;
}
.extra-title {
  font-family: var(--font-d);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 24px;
  text-align: center;
}
.extra-content {
  font-size: 1rem;
  line-height: 1.72;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.extra-content p { margin-bottom: 16px; }
.extra-content a { color: var(--orange); text-decoration: underline; }
.extra-content ul, .extra-content ol { margin: 0 auto 16px; padding-left: 24px; text-align: left; max-width: 600px; }

/* Media dentro de secciones extra */
.extra-media-img-wrap {
  margin: 0 auto 32px;
  max-width: 900px;
  text-align: center;
}
.extra-media-img-wrap img.extra-media-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}
.extra-media-video {
  margin: 0 auto 32px;
  max-width: 900px;
}
.extra-media-video video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}
.extra-media-embed {
  margin: 0 auto 32px;
  max-width: 900px;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}
.extra-media-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
footer {
  background: #0072C2;
  padding: 50px 0 26px;
}
.ft-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 38px;
}
.ft-brand { font-family: var(--font-d); font-size: 1.08rem; font-weight: 800; color: #fff; margin-bottom: 7px; }
.ft-brand em { font-style: normal; color: var(--orange); }
.ft-tagline { font-size: 0.82rem; color: var(--text-white); line-height: 1.54; max-width: 210px; }
.ft-col h4 {
  font-family: var(--font-d); font-size: 0.67rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--text-white); margin-bottom: 13px;
}
.ft-col a {
  display: block; font-size: 0.86rem; color: var(--text-white);
  margin-bottom: 8px; transition: color var(--dur) var(--ease);
}
.ft-col a:hover { color: var(--orange); }
.ft-mail { display: flex; align-items: center; gap: 7px; }
.ft-mail svg { width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; }
.ft-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.50);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   MODAL FORM
═══════════════════════════════════════════════════════════ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10,8,6,0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.on { display: flex; }
.modal-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 50px 44px;
  width: 100%;
  max-width: 510px;
  position: relative;
  animation: mIn 0.38s cubic-bezier(0.34,1.56,0.64,1) both;
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes mIn {
  from { opacity: 0; transform: translateY(36px) scale(0.95); }
  to   { opacity: 1; transform: none; }
}
.modal-x {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: #F0EDE8; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.95rem;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.modal-x:hover { background: var(--orange); color: #fff; }
.modal-title {
  font-family: var(--font-d);
  font-size: clamp(1.3rem, 2.8vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-group { margin-bottom: 16px; }
.f-group label {
  display: block; font-size: 0.81rem; font-weight: 500;
  color: var(--text-mid); margin-bottom: 6px;
}
.f-group label span { color: var(--orange); }
.f-group input {
  width: 100%; background: #F7F5F2; border: 1.5px solid #DED8D0;
  border-radius: 10px; padding: 12px 14px;
  font-family: var(--font-b); font-size: 0.92rem; color: var(--text-dark);
  outline: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.f-group input::placeholder { color: #B0A99F; }
.f-group input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,119,34,0.11); }
.f-submit { width: 100%; padding: 14px; font-size: 0.95rem; margin-top: 6px; }
.f-privacy {
  text-align: center; font-size: 0.76rem; color: var(--text-muted);
  margin-top: 12px; line-height: 1.5;
}
.f-privacy a { color: var(--orange); text-decoration: underline; }
.f-error {
  display: none;
  align-items: flex-start;
  gap: 10px;
  background: #FEE2E2;
  border: 1px solid #FCA5A5;
  border-left: 4px solid #DC2626;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 18px;
  font-size: 0.87rem;
  color: #7F1D1D;
  line-height: 1.55;
}
.f-error.on { display: flex; }
.f-error-icon { flex-shrink: 0; margin-top: 1px; }
.f-error-icon svg { width: 16px; height: 16px; fill: #DC2626; }
.f-success { display: none; text-align: center; padding: 20px 0; }
.success-ring {
  width: 66px; height: 66px; border-radius: 50%;
  background: rgba(232,119,34,0.11); border: 2px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.75rem; color: var(--orange);
}
.f-success h3 { font-family: var(--font-d); font-size: 1.4rem; font-weight: 800; color: var(--text-dark); margin-bottom: 9px; }
.f-success p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.64; }

/* ═══════════════════════════════════════════════════════════
   LOGIN
═══════════════════════════════════════════════════════════ */
body.login-page {
  background: var(--bg-body);
  min-height: 100vh;
}
.login-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.login-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.09);
  animation: mIn 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}
.login-logo-link { display: block; margin-bottom: 32px; }
.login-logo { height: 36px; width: auto; display: block; }
.login-title {
  font-family: var(--font-d);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.login-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 28px;
}
.login-error {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #FEE2E2;
  border: 1px solid #FCA5A5;
  border-left: 4px solid #DC2626;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 20px;
  font-size: 0.87rem;
  color: #7F1D1D;
  line-height: 1.5;
}
.login-error svg { width: 18px; height: 18px; fill: #DC2626; flex-shrink: 0; margin-top: 1px; }
.login-form .f-group { margin-bottom: 18px; }
.login-form .f-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 7px;
}
.login-form .f-group input {
  width: 100%;
  background: #F7F5F2;
  border: 1.5px solid #DED8D0;
  border-radius: 10px;
  padding: 13px 15px;
  font-family: var(--font-b);
  font-size: 0.93rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.login-form .f-group input::placeholder { color: #B0A99F; }
.login-form .f-group input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,119,34,0.12);
}
.login-remember {
  margin-bottom: 22px;
  font-size: 0.84rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.login-remember input[type="checkbox"] { accent-color: var(--orange); width: 16px; height: 16px; cursor: pointer; }
.login-btn { width: 100%; padding: 14px; font-size: 0.95rem; }
.login-footer-link {
  text-align: center;
  margin-top: 18px;
  font-size: 0.82rem;
}
.login-footer-link a { color: var(--orange); text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   DASHBOARD
═══════════════════════════════════════════════════════════ */
.dashboard-main {
  min-height: 80vh;
  padding: 60px 0 100px;
  background: var(--bg-body);
}
.dashboard-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 28px;
  box-shadow: 0 4px 28px rgba(0,0,0,0.06);
}
.dashboard-avatar { flex-shrink: 0; }
.dashboard-avatar-img {
  width: 72px !important;
  height: 72px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--orange);
}
.dashboard-eyebrow {
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.dashboard-title {
  font-family: var(--font-d);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 10px;
}
.dashboard-sub {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.62;
}
.dashboard-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.dashboard-info-card {
  background: #fff;
  border: 1px solid #E8E3DA;
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.dashboard-info-card:hover {
  border-color: var(--orange-border);
  box-shadow: 0 4px 20px rgba(232,119,34,0.08);
}
.dashboard-info-icon {
  width: 40px; height: 40px;
  background: var(--orange-bg);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dashboard-info-icon svg { width: 20px; height: 20px; fill: var(--orange); }
.dashboard-info-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.dashboard-info-value {
  font-size: 0.90rem;
  font-weight: 600;
  color: var(--text-dark);
  word-break: break-all;
}
.dashboard-actions { display: flex; gap: 14px; }
.dashboard-logout-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 0.90rem;
}
.dashboard-logout-btn svg { width: 18px; height: 18px; fill: currentColor; }

/* ═══════════════════════════════════════════════════════════
   PÁGINAS INTERIORES (page.php / plantillas)
═══════════════════════════════════════════════════════════ */
.page-main {
  min-height: 60vh;
  padding: 80px 0 100px;
  background: var(--bg-body);
}
.page-title {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 40px;
  line-height: 1.1;
}
.page-content {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text-mid);
  max-width: 820px;
}
.page-content h2 {
  font-family: var(--font-d);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin: 32px 0 16px;
}
.page-content h3 {
  font-family: var(--font-d);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin: 24px 0 12px;
}
.page-content p  { margin-bottom: 18px; }
.page-content a  { color: var(--orange); text-decoration: underline; }
.page-content ul, .page-content ol { padding-left: 24px; margin-bottom: 18px; }
.page-content li { margin-bottom: 8px; }
.page-content img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 24px 0; display: block; }
.page-content strong { color: var(--text-dark); }
.page-content blockquote {
  border-left: 4px solid var(--orange);
  padding: 16px 20px;
  margin: 24px 0;
  background: var(--orange-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-dark);
  font-style: italic;
}

/* Hero para plantilla Landing */
.page-hero {
  background: var(--bg-orange-strip);
  padding: 120px 0 72px;
  text-align: center;
}
.page-hero-title {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
}
.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.68;
}

/* ═══════════════════════════════════════════════════════════
   ADMIN – tabla de contactos
═══════════════════════════════════════════════════════════ */
.cm-admin-wrap { font-family: Arial, sans-serif; }
.cm-admin-wrap table { border-collapse: collapse; width: 100%; }
.cm-admin-wrap th, .cm-admin-wrap td { padding: 8px 12px; border: 1px solid #ddd; font-size: 13px; }
.cm-admin-wrap th { background: #f4f4f4; font-weight: 700; }
.cm-admin-wrap tr:nth-child(even) { background: #fafafa; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 860px) {
  .hero .wrap,
  .sec-problem .wrap,
  .sec-why .inner,
  .sec-cta .wrap { grid-template-columns: 1fr; gap: 42px; }
  .hero-sub { max-width: 100%; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .channels { grid-template-columns: 1fr; }
  .tiendas-stats { grid-template-columns: 1fr; max-width: 360px; }
  .tiendas-sep { display: none; }
  .sec-cta .wrap { text-align: center; justify-items: center; }
  .cta-mail { justify-content: center; }
  .ft-top { grid-template-columns: 1fr 1fr; }
  .modal-box { padding: 34px 26px; }
  .f-row { grid-template-columns: 1fr; }
  .dashboard-card { flex-direction: column; text-align: center; padding: 36px 28px; gap: 20px; }
  .dashboard-info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 11px; }
  .stat-num { font-size: 1.45rem; }
  .signals { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr; gap: 24px; }
  .modal-box { padding: 26px 16px; }
  .stats-subtitle { min-width: 90%; max-width: 90%; margin-left: 5%; }
  .strip-start,
  .sec-problem,
  .sec-why,
  .sec-channels,
  .sec-cta { padding: 68px 0; }
  .extra-title { font-size: 1.4rem; }
  .login-card { padding: 36px 24px; }
}
