/* ------------------------------------------------------------------
 * Landing page styles — Nice2Chat México
 * Relies on ../../colors_and_type.css for tokens.
 * ------------------------------------------------------------------ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  overflow-x: hidden;
  background: var(--bg);
}

img { max-width: 100%; display: block; }
button { font: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Section heading block */
.section-head {
  max-width: 720px;
  margin: 0 auto var(--space-7);
  text-align: center;
}
.section-head h2 { margin-top: var(--space-3); }
.section-sub {
  font-size: var(--fs-body-lg);
  color: var(--fg-muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--coral-500);
  box-shadow: 0 0 0 4px rgba(255,122,77,.18);
}

/* ------------------------------------------------------------------ *
 *  NAV
 * ------------------------------------------------------------------ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: 72px;
  display: flex; align-items: center;
  padding: 0 var(--gutter);
  gap: var(--space-5);
  transition: background var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
  border-bottom: 1px solid transparent;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 16px -4px rgba(11,31,26,.10);
  color: #0E2A22;
}
.nav--scrolled {
  background: rgba(252, 250, 247, .96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(14, 42, 34, .08);
  box-shadow: 0 4px 24px -6px rgba(11,31,26,.14);
  color: #0E2A22;
}
.nav__brand { display: flex; align-items: center; color: inherit; }
.nav__logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(11,31,26,.15));
  transition: transform var(--dur-base) var(--ease), filter var(--dur-base) var(--ease);
}
.nav__brand:hover .nav__logo {
  transform: scale(1.04);
  filter: drop-shadow(0 2px 8px rgba(31,182,122,.30));
}
.nav__links {
  display: flex; gap: var(--space-6);
  flex: 1; justify-content: center;
}
.nav__links a {
  color: rgba(14, 42, 34, .68);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  transition: color var(--dur-base) var(--ease);
}
.nav__links a:hover { color: #0E2A22; }
.nav__cta { color: #fff; }

@media (max-width: 760px) {
  .nav__links { display: none; }
}

/* ------------------------------------------------------------------ *
 *  HERO — Light/Cream variant ("Centro de Contacto de Élite")
 *  Warm off-white canvas, subtle grain, serif headline, real-agent
 *  photography fused with floating chat-UI bubbles.
 * ------------------------------------------------------------------ */
.hero {
  position: relative;
  padding: calc(72px + var(--space-8)) 0 var(--space-9);
  overflow: hidden;
}
.hero--light {
  /* Warm off-white / cream — premium, human, not sterile */
  background:
    radial-gradient(900px 500px at 88% 8%, rgba(255,206,180,.35), transparent 60%),
    radial-gradient(700px 600px at -5% 95%, rgba(167,240,189,.28), transparent 60%),
    #FCFAF7;
  color: var(--ink-900);
}

/* Digital grain — fixes the "AI-perfect" feel */
.hero__grain {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.05  0 0 0 0 0.12  0 0 0 0 0.10  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
}

/* Echo of the brand arc from the social posts (top-right) */
.hero__curve {
  position: absolute;
  top: -160px; right: -180px;
  width: 720px; height: 720px;
  pointer-events: none;
  z-index: 1;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-7);
  align-items: center;
}

/* ── Copy ── */
.eyebrow--light {
  color: var(--green-600);
  font-family: var(--font-display);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
.eyebrow--light .dot {
  background: var(--coral-500);
  box-shadow: 0 0 0 4px rgba(255,122,77,.16);
}

.hero__h1 {
  font-family: 'Instrument Serif', 'Newsreader', Georgia, serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.015em;
  line-height: 1.08;
  color: #0E2A22;
  margin: var(--space-5) 0 var(--space-5);
  font-size: clamp(2.6rem, 5.2vw, 4.3rem);
  text-wrap: balance;
}
.hero__h1-line {
  display: block;
  padding-bottom: 0.06em; /* descender room for italic em */
}
.hero__h1 em {
  font-style: italic;
  background: linear-gradient(95deg, #176D4E 0%, #1FB67A 55%, #FF7A4D 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  padding-right: 0.05em;
}
.hero__lead {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.55;
  color: #46524E;
  max-width: 500px;
  margin: 0;
}

.hero__ctas {
  display: flex; flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

/* Refined WhatsApp button — sophisticated green→coral gradient */
.btn--wa-gradient {
  background: linear-gradient(96deg, #128C7E 0%, #1FB67A 38%, #25D366 60%, #FF8862 110%);
  color: #fff;
  box-shadow:
    0 14px 32px -10px rgba(31,140,126,.45),
    inset 0 1px 0 rgba(255,255,255,.18);
}
.btn--wa-gradient:hover {
  background: linear-gradient(96deg, #169A8A 0%, #25C285 38%, #2EE077 60%, #FF9573 110%);
  transform: translateY(-1px);
  box-shadow:
    0 20px 40px -10px rgba(31,140,126,.55),
    inset 0 1px 0 rgba(255,255,255,.24);
  color: #fff;
}

/* Soft ghost-on-light button */
.btn--soft {
  background: rgba(11, 31, 26, 0.04);
  color: #0E2A22;
  border: 1px solid rgba(11, 31, 26, 0.10);
  backdrop-filter: blur(6px);
}
.btn--soft:hover {
  background: rgba(11, 31, 26, 0.07);
  border-color: rgba(11, 31, 26, 0.18);
  color: #0E2A22;
}

/* ── Stats: polished cards ── */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-7);
  padding: 0;
  border: 0;
  max-width: 540px;
}
.stat-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(14, 42, 34, 0.08);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  display: flex; flex-direction: column;
  gap: 10px;
  backdrop-filter: blur(8px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 4px 18px -8px rgba(14,42,34,.10);
  transition: transform var(--dur-base) var(--ease);
}
.stat-card:hover { transform: translateY(-2px); }
.stat-card__head { display: flex; align-items: baseline; gap: 6px; }
.stat-card__head strong {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 0.9;
  color: #0E2A22;
  letter-spacing: -0.02em;
}
.stat-card__head span {
  font-family: var(--font-body);
  font-size: 12px;
  color: #5B6E68;
  letter-spacing: 0.02em;
}
.stat-card__channels { display: flex; gap: 6px; align-items: center; }
.stat-card__channels .ch {
  width: 22px; height: 22px;
  border-radius: 999px;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
}
.ch--wa  { background: #25D366; }
.ch--m   { background: #0084FF; }
.ch--ig  { background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF); }
.ch--call{ background: #176D4E; }
.ch--mail{ background: #243B36; }
.ch--sms { background: rgba(14,42,34,.08); color: #243B36; }
.stat-card__meta {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px;
  color: #5B6E68;
}
.status-pip {
  width: 12px; height: 12px;
  display: grid; place-items: center;
}
.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #1FB67A;
  box-shadow: 0 0 0 0 rgba(31,182,122,.55);
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(31,182,122,.55); }
  70% { box-shadow: 0 0 0 7px rgba(31,182,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(31,182,122,0); }
}

/* ── Visual side ── */
.hero__visual {
  position: relative;
  height: 580px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero__photo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex; align-items: flex-end; justify-content: flex-end;
}
.hero__photo {
  width: auto;
  height: 100%;
  max-height: 580px;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 30px 40px rgba(14,42,34,0.18));
  position: relative;
  z-index: 2;
}
.hero__photo-shadow {
  position: absolute;
  bottom: -10px; left: 8%; right: 8%;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(14,42,34,0.18), transparent 70%);
  z-index: 1;
}

/* Floating chat UI bubbles — like real conversations emanating from her */
.float-bubble {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(14,42,34,.08);
  border-radius: 18px;
  padding: 10px 14px 12px;
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.4;
  color: #0E2A22;
  box-shadow:
    0 1px 0 rgba(255,255,255,.8) inset,
    0 18px 40px -16px rgba(14,42,34,.22),
    0 4px 12px -4px rgba(14,42,34,.08);
  min-width: 200px;
  max-width: 240px;
  z-index: 3;
  animation: float-in 700ms var(--ease) both;
}
.float-bubble p { margin: 0; color: #1A2D27; font-size: 13.5px; line-height: 1.4; }
.float-bubble__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}
.float-bubble__channel {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 600;
  color: #25D366;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.float-bubble__channel--ig {
  background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.float-bubble__channel--ig svg { color: #DD2A7B; }
.float-bubble__time {
  font-size: 10.5px; color: #9FB1AB; font-family: var(--font-mono);
}
.float-bubble__head--brand { justify-content: flex-start; gap: 9px; }
.float-bubble__head--brand strong {
  display: block; font-family: var(--font-display);
  font-size: 12.5px; font-weight: 600; color: #0E2A22; line-height: 1.1;
}
.float-bubble__head--brand small {
  font-size: 10.5px; color: #5B6E68;
  display: inline-flex; align-items: center; gap: 5px;
}
.float-bubble__avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1FB67A, #FF7A4D);
  padding: 4px;
  display: grid; place-items: center;
  box-shadow: 0 4px 10px -2px rgba(31,182,122,.4);
}
.float-bubble__avatar img { width: 100%; height: auto; filter: brightness(0) invert(1); }

.float-bubble--brand {
  background: linear-gradient(180deg, #0E2A22, #112E26);
  color: #fff;
  border-color: rgba(255,255,255,.06);
}
.float-bubble--brand p { color: rgba(255,255,255,.92); }
.float-bubble--brand .float-bubble__head--brand strong { color: #fff; }
.float-bubble--brand .float-bubble__head--brand small { color: rgba(255,255,255,.6); }

.float-bubble--top    { top: 6%;  left: -4%; animation-delay: 0.15s; }
.float-bubble--mid    { top: 42%; left: -10%; animation-delay: 0.35s; }
.float-bubble--bottom { bottom: 14%; right: -4%; animation-delay: 0.55s; }

@keyframes float-in {
  from { opacity: 0; transform: translateY(12px) scale(.96); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .float-bubble--top { left: 0%; }
  .float-bubble--mid { left: -2%; }
  .float-bubble--bottom { right: 0%; }
}

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .hero__visual { height: 480px; order: -1; }
  .hero__curve { top: -200px; right: -240px; width: 600px; height: 600px; }
  .hero__stats { max-width: 100%; }
}
@media (max-width: 600px) {
  .hero__stats { grid-template-columns: 1fr; max-width: 360px; }
  .hero__visual { height: 420px; }
  .float-bubble { font-size: 12px; min-width: 170px; max-width: 200px; padding: 8px 12px 10px; }
  .float-bubble--mid { left: 0; }
}

/* Chat mock */
.hero__card {
  position: relative;
}
.chatmock {
  background: var(--green-800);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.5), 0 0 0 1px rgba(94,227,140,.06);
  position: relative;
  z-index: 2;
}
.chatmock::before {
  content: '';
  position: absolute; inset: -2px;
  border-radius: calc(var(--radius-xl) + 2px);
  background: var(--gradient-cta);
  z-index: -1;
  opacity: .35;
  filter: blur(20px);
}
.chatmock__head {
  display: flex; align-items: center; gap: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.chatmock__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gradient-cta);
  display: grid; place-items: center;
  color: #0B1F1A;
}
.chatmock__name { font-family: var(--font-display); font-weight: 600; font-size: 14px; }
.chatmock__status {
  font-size: 12px; color: var(--green-400);
  display: flex; align-items: center; gap: 6px;
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-400);
  box-shadow: 0 0 0 0 rgba(94,227,140,.6);
  animation: pulse-dot 1.6s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(94,227,140,.6); }
  70% { box-shadow: 0 0 0 8px rgba(94,227,140,0); }
  100% { box-shadow: 0 0 0 0 rgba(94,227,140,0); }
}
.chatmock__channels {
  margin-left: auto;
  display: flex; gap: var(--space-3);
  color: rgba(255,255,255,.6);
}
.chatmock__channels svg { width: 18px; height: 18px; }
.chatmock__body {
  padding: var(--space-4) 0;
  display: flex; flex-direction: column; gap: var(--space-2);
  min-height: 220px;
}
.bubble {
  max-width: 78%;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.4;
  border-radius: 14px;
  animation: bubble-in .5s var(--ease) both;
}
.bubble--in {
  background: rgba(255,255,255,.06);
  color: #fff;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.bubble--out {
  background: var(--gradient-cta);
  color: #0B1F1A;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  font-weight: 500;
}
.bubble--typing { display: flex; gap: 4px; padding: 14px 16px; align-self: flex-end; }
.bubble--typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: #0B1F1A; opacity: .5;
  animation: typing 1.4s infinite;
}
.bubble--typing span:nth-child(2) { animation-delay: .15s; }
.bubble--typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: .3; } 30% { transform: translateY(-4px); opacity: 1; } }
@keyframes bubble-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.chatmock__foot {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-3);
  background: rgba(0,0,0,.2);
  border-radius: 12px;
  color: rgba(255,255,255,.5);
  font-size: 13px;
}
.chatmock__foot svg { width: 18px; height: 18px; }
.chatmock__send {
  margin-left: auto;
  width: 36px; height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: #0B1F1A;
  display: grid; place-items: center;
  cursor: pointer;
}

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__card { order: -1; max-width: 460px; margin: 0 auto; }
  .hero__stats { gap: var(--space-5); flex-wrap: wrap; }
}

/* ------------------------------------------------------------------ *
 *  PILLARS — Editorial photo essay ("La diferencia humana")
 *  Continues the cream/grain canvas from the hero; 3 documentary
 *  photo cards stacked horizontally with chapter numbers, serif
 *  titles, proof-stat captions.
 * ------------------------------------------------------------------ */
.pillars--editorial {
  position: relative;
  padding: var(--space-9) 0;
  overflow: hidden;
  background:
    radial-gradient(800px 500px at 10% 10%, rgba(167,240,189,.18), transparent 60%),
    radial-gradient(700px 600px at 95% 90%, rgba(255,200,170,.18), transparent 60%),
    #FCFAF7;
  color: var(--ink-900);
}
.pillars__grain {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.38;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.05  0 0 0 0 0.12  0 0 0 0 0.10  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  z-index: 1;
}
.pillars__logo-watermark {
  position: absolute;
  top: 60px; right: -120px;
  width: 460px; height: auto;
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
  transform: rotate(-12deg);
  color: #0E2A22;
}

.pillars__head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-8);
  align-items: end;
  margin-bottom: var(--space-8);
}
.pillars__h2 {
  font-family: 'Instrument Serif', 'Newsreader', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #0E2A22;
  margin: var(--space-3) 0 0;
}
.pillars__h2 em {
  font-style: italic;
  background: linear-gradient(95deg, #176D4E 0%, #1FB67A 55%, #FF7A4D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pillars__head-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: #46524E;
  max-width: 380px;
  margin: 0;
}

.pillar-grid--editorial {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.pillar-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(14, 42, 34, 0.07);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 18px 50px -20px rgba(14, 42, 34, 0.18),
    0 6px 18px -8px rgba(14, 42, 34, 0.08);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
  animation: pillar-rise 700ms var(--ease) var(--delay, 0ms) both;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 28px 60px -24px rgba(14, 42, 34, 0.24),
    0 8px 22px -8px rgba(14, 42, 34, 0.1);
}
@keyframes pillar-rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.pillar-card__photo-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.pillar-card__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.pillar-card:hover .pillar-card__photo { transform: scale(1.04); }

.pillar-card__chapter {
  position: absolute;
  left: 14px; top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px 6px 8px;
  background: rgba(255, 250, 247, 0.88);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  font-family: var(--font-display);
  color: #0E2A22;
  border: 1px solid rgba(14, 42, 34, 0.06);
}
.pillar-card__chapter-n {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
}
.pillar-card__chapter-dash {
  width: 12px; height: 1px;
  background: rgba(14,42,34,.35);
}
.pillar-card__chapter-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #5B6E68;
  font-weight: 500;
}

.pillar-card--coral .pillar-card__chapter-n {
  background: linear-gradient(95deg, #FF7A4D, #176D4E);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pillar-card--green .pillar-card__chapter-n {
  color: #176D4E;
}

.pillar-card__body {
  padding: var(--space-5) var(--space-5) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}
.pillar-card__title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: 1.65rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #0E2A22;
  margin: 0;
  text-wrap: balance;
}
.pillar-card__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: #46524E;
}
.pillar-card__proof {
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px dashed rgba(14, 42, 34, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-2);
}
.pillar-card__proof small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #5B6E68;
  font-weight: 500;
}
.pillar-card__proof strong {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: 1.25rem;
  color: #176D4E;
  letter-spacing: -0.01em;
}
.pillar-card--coral .pillar-card__proof strong { color: #E85A2E; }

@media (max-width: 980px) {
  .pillars__head { grid-template-columns: 1fr; gap: var(--space-4); }
  .pillar-grid--editorial { grid-template-columns: 1fr; }
  .pillars__logo-watermark { top: 30px; right: -160px; width: 360px; }
}

/* ------------------------------------------------------------------ *
 *  CHANNELS — Live Inbox Unificado (dark studio)
 * ------------------------------------------------------------------ */
.channels--inbox {
  position: relative;
  padding: var(--space-9) 0;
  overflow: hidden;
  background: #07140F;
  color: #fff;
}
.channels__bg {
  position: absolute; inset: 0;
  background-image: url('assets/FONDO.png');
  background-size: cover;
  background-position: center;
  opacity: 0.85;
  z-index: 0;
}
.channels__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 10% 90%, rgba(94,227,140,.16), transparent 60%),
    linear-gradient(180deg, rgba(7,20,15,.65) 0%, rgba(7,20,15,.40) 50%, rgba(7,20,15,.80) 100%);
}
.channels__glow {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(380px 380px at 88% 12%, rgba(255,122,77,.18), transparent 70%);
}
.channels__container { position: relative; z-index: 2; }

.channels__head {
  text-align: left;
  max-width: 760px;
  margin: 0 auto var(--space-8);
  text-align: center;
}
.channels__eyebrow {
  color: var(--green-400);
  justify-content: center;
  display: inline-flex;
}
.channels__h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: #fff;
  margin: var(--space-3) 0 var(--space-3);
}
.channels__h2 em {
  font-style: italic;
  background: linear-gradient(95deg, #5EE38C 0%, #1FB67A 50%, #FF7A4D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.channels__sub {
  font-family: var(--font-body);
  color: rgba(255,255,255,.72);
  font-size: 1.1rem;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 560px;
}

.channels__panel {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: var(--space-6);
  align-items: stretch;
}

/* ── Inbox mock ── */
.inbox {
  background: linear-gradient(180deg, rgba(13, 32, 27, 0.92), rgba(8, 22, 18, 0.92));
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  box-shadow:
    0 30px 80px -28px rgba(0,0,0,.6),
    0 0 0 1px rgba(94,227,140,.06);
  overflow: hidden;
  max-height: 560px;
}
.inbox__chrome {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.18);
}
.inbox__chrome-dots {
  display: flex; gap: 5px;
}
.inbox__chrome-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}
.inbox__chrome-dots span:nth-child(1) { background: #FF7A4D; }
.inbox__chrome-dots span:nth-child(2) { background: #FFD166; }
.inbox__chrome-dots span:nth-child(3) { background: #1FB67A; }
.inbox__chrome-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.inbox__chrome-live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--green-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
}

.inbox__filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
.inbox__count strong {
  color: #fff;
  font-weight: 600;
  margin-right: 4px;
}
.inbox__count em {
  font-style: normal;
  color: var(--green-400);
}
.inbox__clear {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.82);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease);
}
.inbox__clear:hover { background: rgba(255,255,255,.1); }

.inbox__list {
  list-style: none;
  margin: 0; padding: 0;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}
.inbox__list::-webkit-scrollbar { width: 6px; }
.inbox__list::-webkit-scrollbar-thumb { background: rgba(255,255,255,.08); border-radius: 999px; }
.inbox__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  position: relative;
  transition: background var(--dur-base) var(--ease);
  animation: row-in 400ms var(--ease) both;
}
@keyframes row-in {
  from { opacity: 0; transform: translateX(-4px); }
  to   { opacity: 1; transform: none; }
}
.inbox__row:hover { background: rgba(255,255,255,.03); }
.inbox__row.is-live { background: linear-gradient(90deg, rgba(31,182,122,.10), transparent 60%); }

.inbox__avatar {
  position: relative;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px -4px rgba(0,0,0,.4);
}
.inbox__channel-dot {
  position: absolute;
  bottom: -3px; right: -3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid #0c1f1a;
  display: grid;
  place-items: center;
  color: #fff;
}
.inbox__channel-dot svg { width: 9px; height: 9px; }
.inbox__channel-dot--whatsapp  { background: #25D366; }
.inbox__channel-dot--messenger { background: #0084FF; }
.inbox__channel-dot--instagram { background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF); }
.inbox__channel-dot--phone     { background: #176D4E; }
.inbox__channel-dot--mail      { background: #FF7A4D; }
.inbox__channel-dot--sms       { background: #5B6E68; }

.inbox__main {
  flex: 1;
  min-width: 0;
}
.inbox__row-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 2px;
}
.inbox__row-head strong {
  font-family: var(--font-display);
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inbox__time {
  font-size: 11px;
  font-family: var(--font-mono);
  color: rgba(255,255,255,.5);
  white-space: nowrap;
  flex-shrink: 0;
}
.inbox__time--live {
  color: var(--green-400);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.inbox__main p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,.62);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.is-unread .inbox__main p { color: rgba(255,255,255,.82); }
.is-unread .inbox__main strong { color: #fff; }
.inbox__unread {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral-500);
  box-shadow: 0 0 0 0 rgba(255,122,77,.6);
  animation: pulse-coral 1.8s infinite;
  flex-shrink: 0;
  margin-top: 12px;
}
@keyframes pulse-coral {
  0% { box-shadow: 0 0 0 0 rgba(255,122,77,.55); }
  70% { box-shadow: 0 0 0 7px rgba(255,122,77,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,122,77,0); }
}
.inbox__empty {
  text-align: center;
  padding: var(--space-7) var(--space-4);
  color: rgba(255,255,255,.5);
  font-family: var(--font-body);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.inbox__empty svg { color: var(--green-400); }

.inbox__compose {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.18);
  align-items: center;
}
.inbox__compose-input {
  flex: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 999px;
  color: rgba(255,255,255,.5);
  font-size: 13px;
}
.inbox__compose-send {
  width: 36px; height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: #0B1F1A;
  display: grid; place-items: center;
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease);
}
.inbox__compose-send:hover { transform: scale(1.06); }

/* ── Channel chips column ── */
.ch-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 560px;
  overflow-y: auto;
  padding-right: 4px;
}
.ch-stack::-webkit-scrollbar { width: 5px; }
.ch-stack::-webkit-scrollbar-thumb { background: rgba(255,255,255,.06); border-radius: 999px; }
.ch-stack__lead {
  padding: 4px 4px 8px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 4px;
}
.ch-stack__lead-label {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,.55);
  font-weight: 600;
  margin-bottom: 2px;
}
.ch-stack__lead small {
  color: rgba(255,255,255,.4);
  font-size: 11.5px;
}
.ch-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-align: left;
  width: 100%;
  color: #fff;
  font-family: var(--font-body);
  transition:
    background var(--dur-base) var(--ease),
    border-color var(--dur-base) var(--ease),
    transform var(--dur-base) var(--ease);
}
.ch-chip:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
}
.ch-chip.is-active {
  background: linear-gradient(95deg, color-mix(in srgb, var(--ch-c) 20%, rgba(0,0,0,.4)), rgba(0,0,0,.3));
  border-color: var(--ch-c);
  box-shadow: 0 12px 30px -12px color-mix(in srgb, var(--ch-c) 50%, transparent);
}
.ch-chip__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ch-c);
  color: #fff;
  flex-shrink: 0;
}
.ch-chip__icon svg { width: 16px; height: 16px; }
.ch-chip__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.ch-chip__body strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}
.ch-chip__body small {
  font-size: 11.5px;
  color: rgba(255,255,255,.55);
}
.ch-chip__count {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.05);
  padding: 3px 9px;
  border-radius: 999px;
  flex-shrink: 0;
}
.ch-chip.is-active .ch-chip__count {
  background: var(--ch-c);
  color: #fff;
}

@media (max-width: 960px) {
  .channels__panel { grid-template-columns: 1fr; }
  .inbox { max-height: 480px; }
  .ch-stack { max-height: none; }
}

/* ------------------------------------------------------------------ *
 *  CONTACT
 * ------------------------------------------------------------------ */
.contact {
  padding: var(--space-9) 0;
  background: var(--ink-50);
  color: var(--ink-900);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-8);
  align-items: start;
}
.contact__info h2 { color: var(--ink-900); margin-top: var(--space-3); }
.contact__info p { color: var(--ink-500); max-width: 420px; }
.contact__info .eyebrow { color: var(--green-600); }
.contact__info .eyebrow .dot { background: var(--coral-500); }
.contact__list {
  list-style: none; padding: 0; margin: var(--space-6) 0;
  display: flex; flex-direction: column; gap: var(--space-4);
}
.contact__list li {
  display: flex; align-items: flex-start; gap: var(--space-3);
}
.contact__list svg {
  width: 22px; height: 22px;
  color: var(--green-500);
  margin-top: 2px;
  flex-shrink: 0;
}
.contact__list span { display: flex; flex-direction: column; }
.contact__list strong { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink-900); }
.contact__list small { color: var(--ink-500); font-size: 13px; }

.contact__form {
  background: var(--ink-100);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
  gap: var(--space-4);
}
.contact__row { display: grid; gap: var(--space-4); }
.contact__row--2 { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; }
.field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--ink-900);
}
.field input, .field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--ink-200);
  background: var(--ink-100);
  color: var(--ink-900);
  outline: none;
  transition: all var(--dur-base) var(--ease);
  width: 100%;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(31,182,122,.16);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-300); }
.field--err input, .field--err textarea {
  border-color: var(--coral-600);
  box-shadow: 0 0 0 4px rgba(232,90,46,.14);
}
.field__err { color: var(--coral-600); font-size: 12px; margin-top: 6px; }
.contact__legal { color: var(--ink-500); text-align: center; }

@media (max-width: 880px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__row--2 { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------ *
 *  FOOTER
 * ------------------------------------------------------------------ */
.footer {
  background: var(--green-900);
  color: var(--fg-muted);
  padding: var(--space-9) 0 var(--space-5);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: var(--space-7);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__brand img { height: 80px; width: auto; margin-bottom: var(--space-3); object-fit: contain; object-position: left center; }
.footer__brand p { max-width: 320px; font-size: 14px; }
.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  margin: 0 0 var(--space-4);
}
.footer__col a, .footer__col span {
  display: block;
  color: var(--fg-muted);
  font-size: 14px;
  margin-bottom: var(--space-2);
}
.footer__col a:hover { color: var(--green-400); }
.footer__socials { display: flex; gap: var(--space-2); }
.footer__socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: grid; place-items: center;
  color: #fff;
  margin: 0;
  transition: all var(--dur-base) var(--ease);
}
.footer__socials a:hover {
  background: var(--gradient-cta);
  color: #0B1F1A;
  border-color: transparent;
  transform: translateY(-2px);
}
.footer__socials svg { width: 18px; height: 18px; }
.footer__bar {
  display: flex; justify-content: space-between;
  padding-top: var(--space-5);
  font-size: 13px;
  color: var(--fg-faint);
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter); padding-right: var(--gutter);
  flex-wrap: wrap;
  gap: var(--space-3);
}
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------ *
 *  WHATSAPP FAB
 * ------------------------------------------------------------------ */
.wa-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 60;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #0B1F1A;
  display: grid; place-items: center;
  box-shadow: 0 16px 36px -8px rgba(37,211,102,.55), 0 0 0 0 rgba(37,211,102,.45);
  animation: wa-pulse 2.4s var(--ease) infinite;
  transition: transform var(--dur-base) var(--ease);
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab__pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  opacity: .35;
  animation: wa-halo 2.4s var(--ease) infinite;
}
@keyframes wa-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
@keyframes wa-halo {
  0% { transform: scale(1); opacity: .35; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ------------------------------------------------------------------ *
 *  REELS — "Síguenos / En nuestras redes"
 *  3 phone-frame mockups with looping muted videos
 * ------------------------------------------------------------------ */
.reels {
  position: relative;
  padding: var(--space-9) 0;
  background:
    radial-gradient(700px 500px at 90% 0%, rgba(255,206,180,.22), transparent 60%),
    radial-gradient(600px 500px at 0% 100%, rgba(167,240,189,.20), transparent 60%),
    #FCFAF7;
  color: var(--ink-900);
  overflow: hidden;
}
.reels::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.05  0 0 0 0 0.12  0 0 0 0 0.10  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  z-index: 0;
}
.reels__container { position: relative; z-index: 1; }

.reels__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-7);
}
.reels__head .eyebrow--light { justify-content: center; display: inline-flex; }
.reels__h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #0E2A22;
  margin: var(--space-3) 0;
}
.reels__h2 em {
  font-style: italic;
  background: linear-gradient(95deg, #1FB67A 0%, #FF7A4D 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.reels__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: #46524E;
  margin: 0;
}

.reels__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: 980px;
  margin: 0 auto;
  justify-items: center;
}
.reel {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  animation: pillar-rise 700ms var(--ease) var(--delay, 0ms) both;
  width: 100%;
  max-width: 260px;
}

/* Phone frame — clean black bezel, 9:16 aspect */
.reel__phone {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #0E2A22;
  border-radius: 32px;
  padding: 7px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.08) inset,
    0 30px 60px -22px rgba(14, 42, 34, 0.4),
    0 8px 22px -8px rgba(14, 42, 34, 0.18);
  overflow: hidden;
  transition: transform var(--dur-slow) var(--ease);
}
.reel:hover .reel__phone { transform: translateY(-6px); }
.reel__notch {
  position: absolute;
  top: 7px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 18px;
  background: #0E2A22;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.reel__video {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 26px;
  background: #000;
}
.reel__overlay {
  position: absolute;
  inset: 7px;
  border-radius: 26px;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 14px;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 35%, transparent 65%, rgba(0,0,0,0.55) 100%);
}
.reel__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(8px);
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
}
.reel__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255,122,77,.85);
  padding: 4px 9px 4px 8px;
  border-radius: 999px;
}
.reel__live .pulse-dot { background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,.55); }

.reel__cap {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.35;
  color: #243B36;
  text-align: center;
  text-wrap: balance;
  max-width: 240px;
}

.reels__cta {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-7);
  flex-wrap: wrap;
}

@media (max-width: 800px) {
  .reels__grid { grid-template-columns: 1fr 1fr; max-width: 540px; }
  .reel:last-child { grid-column: 1 / -1; max-width: 260px; justify-self: center; }
}
@media (max-width: 500px) {
  .reels__grid { grid-template-columns: 1fr; }
  .reel:last-child { grid-column: auto; }
}

/* Footer logo (nice2chat.png trimmed) */
.footer__logo {
  height: 100px;
  width: auto;
  margin-bottom: var(--space-3);
  object-fit: contain;
  object-position: left center;
}

/* ------------------------------------------------------------------ *
 *  REELS — big title variant
 * ------------------------------------------------------------------ */
.reels__h2--big {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
}

/* ------------------------------------------------------------------ *
 *  ABOUT — Quiénes Somos / Misión / Visión / Propuesta de Valor
 * ------------------------------------------------------------------ */
.about {
  position: relative;
  padding: var(--space-9) 0 var(--space-8);
  background:
    radial-gradient(800px 500px at 95% 5%, rgba(255,206,180,.22), transparent 60%),
    radial-gradient(600px 400px at 0% 100%, rgba(167,240,189,.18), transparent 60%),
    var(--ink-50);
  overflow: hidden;
}
.about__grain {
  position: absolute; inset: 0; pointer-events: none;
  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='0.035'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: .45;
}
.about__header {
  max-width: 760px;
  margin: 0 auto var(--space-8);
  text-align: center;
}
.about__h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink-900);
  margin-top: var(--space-3);
}
.about__h2 em { font-style: italic; color: var(--green-600); }
.about__lead {
  font-size: var(--fs-body-lg);
  color: var(--ink-500);
  margin-top: var(--space-4);
}
.about__website {
  display: inline-block;
  margin-top: var(--space-2);
  font-size: var(--fs-body-sm);
  font-weight: 600;
  color: var(--green-600);
  letter-spacing: 0.02em;
}
.about__website:hover { color: var(--green-500); }

/* Misión + Visión grid */
.about__mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}
@media (max-width: 700px) { .about__mv-grid { grid-template-columns: 1fr; } }

.about__mv-card {
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  border: 1px solid var(--ink-200);
  background: var(--ink-100);
  box-shadow: var(--shadow-sm);
}
.about__mv-card--green { border-top: 3px solid var(--green-500); }
.about__mv-card--coral { border-top: 3px solid var(--coral-500); }
.about__mv-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-4);
}
.about__mv-card--green .about__mv-icon { background: rgba(31,182,122,.12); color: var(--green-600); }
.about__mv-card--coral .about__mv-icon { background: rgba(255,122,77,.12); color: var(--coral-600); }
.about__mv-card h3 { color: var(--ink-900); margin-bottom: var(--space-3); }
.about__mv-card p { color: var(--ink-500); margin: 0; }

/* Propuesta de Valor */
.about__valor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: center;
  background: var(--ink-100);
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  border: 1px solid var(--ink-200);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 760px) { .about__valor { grid-template-columns: 1fr; } }
.about__valor-h3 { color: var(--ink-900); font-size: var(--fs-h3); margin: var(--space-3) 0 var(--space-4); }
.about__valor-text p { color: var(--ink-500); margin: 0; }
.about__canales {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: flex-end;
}
@media (max-width: 760px) { .about__canales { justify-content: flex-start; } }
.about__canal-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  background: rgba(31,182,122,.10);
  border: 1px solid rgba(31,182,122,.25);
  color: var(--green-600);
  font-size: var(--fs-body-sm);
  font-weight: 600;
  font-family: var(--font-display);
}

/* ------------------------------------------------------------------ *
 *  VALORES
 * ------------------------------------------------------------------ */
.about-valores {
  padding: var(--space-9) 0;
  background: var(--green-900);
  position: relative;
}
.about-valores__head {
  text-align: center;
  margin-bottom: var(--space-7);
}
.about-valores__h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--fg);
  margin-top: var(--space-3);
}
.about-valores__h2 em { font-style: italic; color: var(--green-400); }
.about-valores__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
@media (max-width: 860px) { .about-valores__grid { grid-template-columns: 1fr; } }

.about-valor-card {
  background: var(--green-800);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  border: 1px solid var(--border);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
  animation: fadeUp var(--dur-reveal) var(--ease) both;
  animation-delay: var(--delay, 0ms);
}
.about-valor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.about-valor-card--green { border-top: 2px solid var(--green-500); }
.about-valor-card--coral { border-top: 2px solid var(--coral-500); }
.about-valor-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-4);
}
.about-valor-card--green .about-valor-card__icon { background: rgba(31,182,122,.15); color: var(--green-400); }
.about-valor-card--coral .about-valor-card__icon { background: rgba(255,122,77,.15); color: var(--coral-400); }
.about-valor-card h4 { color: var(--fg); margin-bottom: var(--space-3); }
.about-valor-card p { color: var(--fg-muted); margin: 0; font-size: var(--fs-body-sm); }

/* ------------------------------------------------------------------ *
 *  NO PIERDAS MÁS CLIENTES
 * ------------------------------------------------------------------ */
.no-pierdas {
  position: relative;
  padding: var(--space-9) 0;
  background:
    radial-gradient(700px 500px at 100% 50%, rgba(255,122,77,.18), transparent 60%),
    radial-gradient(500px 400px at 0% 0%, rgba(31,182,122,.15), transparent 60%),
    var(--green-900);
  overflow: hidden;
}
.no-pierdas__grain {
  position: absolute; inset: 0; pointer-events: none;
  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='0.04'/%3E%3C/svg%3E");
  background-size: 180px 180px; opacity: .5;
}
.no-pierdas__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  position: relative;
}
@media (max-width: 860px) { .no-pierdas__container { grid-template-columns: 1fr; } }
.no-pierdas__h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
  margin: var(--space-3) 0 var(--space-5);
}
.no-pierdas__h2 em { font-style: italic; color: var(--coral-400); }
.no-pierdas__lead {
  color: var(--fg-muted);
  font-size: var(--fs-body-lg);
  margin-bottom: var(--space-6);
}
.no-pierdas__benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.np-benefit {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.np-benefit__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(31,182,122,.14);
  border: 1px solid rgba(31,182,122,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-400);
}
.np-benefit strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: var(--space-1);
}
.np-benefit p {
  margin: 0;
  font-size: var(--fs-body-sm);
  color: var(--fg-muted);
}
