/* ============================================================
   FROGGY EVENTS — Sistema de diseño global
   ============================================================ */

:root {
  --forest:     #0d3b2e;
  --moss:       #1a5d45;
  --green:      #2a8a5f;
  --lime:       #c4f241;
  --lime-dim:   #b5e038;
  --sage:       #e4efdc;
  --cream:      #f5f1e8;
  --cream-dark: #ebe5d4;
  --ink:        #0a1612;
  --muted:      #5a6b64;
  /* Accent: se sobreescribe por página en <style> inline */
  --accent:     #c7552a;
  --accent-light: #e8b095;
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.5;
}

/* ============================================================
   UTILIDADES
   ============================================================ */
.wrap        { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.wrap--narrow{ max-width: 900px;  margin: 0 auto; padding: 0 32px; }
.section     { padding: 80px 32px; max-width: 1400px; margin: 0 auto; }
.section--alt{ padding: 80px 32px; }

/* Animación reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 20px 32px;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  background: rgba(245,241,232,.78);
  border-bottom: 1px solid rgba(13,59,46,.08);
  transition: padding .3s, background .3s;
}
.nav.scrolled { padding: 14px 32px; background: rgba(245,241,232,.94); }
.nav__inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 600; letter-spacing: -.02em;
  color: var(--forest);
  display: flex; align-items: center; gap: 10px;
}
.nav__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(196,242,65,.25);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100%{ box-shadow:0 0 0 3px rgba(196,242,65,.25); }
  50%    { box-shadow:0 0 0 7px rgba(196,242,65,.08); }
}
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a { font-size: 14.5px; font-weight: 500; color: var(--forest); transition: opacity .2s; }
.nav__links a:hover { opacity: .55; }
.nav__links .btn { margin-left: 8px; }

/* ============================================================
   BOTONES
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 100px;
  font-family: 'Geist', sans-serif; font-weight: 500; font-size: 14.5px;
  border: none; cursor: pointer;
  text-decoration: none;
  transition: background .25s, transform .25s, border-color .25s, color .25s;
}
.btn--lg { padding: 18px 32px; font-size: 16px; }
.btn--primary { background: var(--forest); color: var(--cream); }
.btn--primary:hover { background: var(--ink); transform: translateY(-1px); }
.btn--lime { background: var(--lime); color: var(--ink); }
.btn--lime:hover { background: var(--lime-dim); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--forest); border: 1px solid var(--forest); }
.btn--ghost:hover { background: var(--forest); color: var(--cream); }
.btn--ghost-light { background: transparent; color: var(--cream); border: 1px solid var(--cream); }
.btn--ghost-light:hover { background: var(--cream); color: var(--forest); }
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex; gap: 10px; align-items: center;
  font-size: 13.5px; color: var(--muted);
  margin-bottom: 36px;
}
.breadcrumb a { transition: color .2s; }
.breadcrumb a:hover { color: var(--forest); }
.breadcrumb__sep { opacity: .4; }
.breadcrumb__current { color: var(--forest); font-weight: 500; }

/* ============================================================
   ETIQUETA DE SECCIÓN
   ============================================================ */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 16px;
}
.section-label::before { content:''; width:24px; height:1px; background:var(--green); }
.section-label--light { color: var(--lime); }
.section-label--light::before { background: var(--lime); }

/* ============================================================
   TÍTULOS
   ============================================================ */
.h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(52px,7vw,104px);
  line-height: .92; letter-spacing: -.035em; font-weight: 400;
  color: var(--forest);
}
.h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px,5vw,64px);
  line-height: 1; letter-spacing: -.03em; font-weight: 400;
  color: var(--forest);
}
.h2--light { color: var(--cream); }
.h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px,3vw,34px);
  line-height: 1.05; letter-spacing: -.02em; font-weight: 400;
}
em.green  { font-style: italic; font-weight: 300; color: var(--green); }
em.lime   { font-style: italic; font-weight: 300; color: var(--lime); }
em.accent { font-style: italic; font-weight: 300; color: var(--accent); }

.highlight {
  position: relative; display: inline-block;
}
.highlight::after {
  content: '';
  position: absolute; left: -4px; right: -4px; bottom: .08em;
  height: .28em; background: var(--lime); z-index: -1;
  transform: skew(-2deg);
}

/* ============================================================
   HERO DE ACTIVIDAD
   ============================================================ */
.hero-act {
  padding: 140px 32px 60px;
  position: relative; overflow: hidden;
}
.hero-act__grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 80px; align-items: center;
}
.hero-act__tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 10px; border-radius: 100px;
  background: var(--accent-light); color: var(--accent);
  font-size: 13px; font-weight: 600; margin-bottom: 28px;
}
.hero-act__tag-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
}
.hero-act__sub {
  font-size: 19px; color: var(--muted);
  max-width: 540px; margin-bottom: 36px; line-height: 1.55;
}
.hero-act__specs {
  display: flex;
  border: 1px solid rgba(13,59,46,.12); border-radius: 20px;
  overflow: hidden; margin-bottom: 36px;
  background: rgba(255,255,255,.4);
}
.spec-box {
  flex: 1; padding: 18px 22px;
  border-right: 1px solid rgba(13,59,46,.12);
}
.spec-box:last-child { border-right: none; }
.spec-box__label {
  font-size: 11px; text-transform: uppercase; letter-spacing: .12em;
  color: var(--muted); margin-bottom: 4px; font-weight: 600;
}
.spec-box__value {
  font-family: 'Fraunces', serif; font-size: 22px;
  letter-spacing: -.02em; color: var(--forest);
}
.hero-act__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero visual */
.hero-visual {
  position: relative; aspect-ratio: 1/1;
  max-width: 520px; margin-left: auto;
}
.hero-visual__plate {
  width: 100%; height: 100%; border-radius: 50%;
  box-shadow: 0 40px 80px -20px rgba(13,59,46,.35);
  overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
}
/* Foto de fondo del plato */
.hero-visual__photo {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--forest), var(--moss));
  /* FOTO: sustituir por <img> o background-image */
}
.hero-visual__overlay {
  position: absolute; inset: 0;
  background: rgba(13,22,18,.45);
}
.hero-visual__content {
  position: relative; z-index: 2;
  text-align: center; color: var(--cream); padding: 40px;
}
.hero-visual__star {
  font-size: 72px; line-height: 1; color: var(--lime);
  filter: drop-shadow(0 0 20px rgba(196,242,65,.4));
  margin-bottom: 12px;
}
.hero-visual__label {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 30px; font-weight: 400; line-height: 1.1;
}
.hero-visual__plate::before {
  content: '';
  position: absolute; inset: 20px; border-radius: 50%;
  border: 1.5px dashed rgba(196,242,65,.35);
  z-index: 3; pointer-events: none;
}
.hero-badge {
  position: absolute;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-align: center; font-family: 'Fraunces', serif;
  font-weight: 500; line-height: 1.15; letter-spacing: -.01em;
  box-shadow: 0 20px 40px -10px rgba(13,59,46,.3);
}
.hero-badge--1 {
  width: 118px; height: 118px;
  background: var(--lime); color: var(--ink); font-size: 13px;
  top: -8px; right: -8px;
  animation: float1 5s ease-in-out infinite;
}
.hero-badge--2 {
  width: 100px; height: 100px;
  background: var(--accent); color: var(--cream); font-size: 12px;
  bottom: -14px; left: -14px;
  animation: float2 6s ease-in-out infinite;
}
@keyframes float1 {
  0%,100%{transform:translateY(0) rotate(8deg);}
  50%{transform:translateY(-10px) rotate(8deg);}
}
@keyframes float2 {
  0%,100%{transform:translateY(0) rotate(-6deg);}
  50%{transform:translateY(-8px) rotate(-6deg);}
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(13,59,46,.12);
  border-bottom: 1px solid rgba(13,59,46,.12);
  padding: 22px 0;
}
.marquee__track {
  display: flex; gap: 56px;
  animation: marquee-scroll 40s linear infinite;
  white-space: nowrap;
}
.marquee__item {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 22px; font-weight: 400; color: var(--forest);
  display: flex; align-items: center; gap: 56px;
}
.marquee__item::after { content:'✦'; font-style:normal; color:var(--green); }
@keyframes marquee-scroll {
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
}

/* ============================================================
   INTRO SPLIT
   ============================================================ */
.intro-split {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
.pull-quote {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 24px; line-height: 1.3; letter-spacing: -.015em;
  color: var(--forest); font-weight: 300;
  padding: 24px 0 24px 28px;
  border-left: 3px solid var(--lime);
  margin-top: 24px;
}
.body-text p {
  font-size: 17px; line-height: 1.7; color: var(--ink); margin-bottom: 20px;
}
.body-text p:last-child { margin-bottom: 0; }
.body-text strong { color: var(--forest); font-weight: 600; }

/* ============================================================
   SECCIÓN OSCURA — Cómo funciona
   ============================================================ */
.dark-section {
  background: var(--forest); color: var(--cream);
  padding: 80px 32px; position: relative; overflow: hidden;
}
.dark-section::before {
  content: '';
  position: absolute; top: -40%; right: -10%;
  width: 50%; height: 180%;
  background: radial-gradient(ellipse, var(--lime), transparent 60%);
  opacity: .07; pointer-events: none;
}
.dark-section__head {
  max-width: 1400px; margin: 0 auto 72px;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 60px; align-items: end;
}
.dark-section__desc { font-size: 17px; opacity: .75; line-height: 1.55; }

.steps-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
}
.step {
  background: rgba(245,241,232,.04);
  border: 1px solid rgba(245,241,232,.1);
  border-radius: 28px; padding: 40px 32px;
  min-height: 340px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: background .3s, transform .3s;
}
.step:hover { background: rgba(245,241,232,.07); transform: translateY(-3px); }
.step__num {
  font-family: 'Fraunces', serif; font-size: 88px;
  font-weight: 400; letter-spacing: -.04em; line-height: 1;
  color: var(--lime); margin-bottom: 36px;
}
.step__title {
  font-family: 'Fraunces', serif; font-size: 26px;
  letter-spacing: -.02em; line-height: 1.1; font-weight: 400;
  margin-bottom: 12px;
}
.step__desc { font-size: 15px; line-height: 1.55; opacity: .8; }

/* ============================================================
   SKILLS
   ============================================================ */
.skills-section { background: var(--sage); padding: 80px 32px; }
.skills-head {
  max-width: 1400px; margin: 0 auto 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end;
}
.skills-head__desc { font-size: 17px; color: var(--muted); line-height: 1.6; max-width: 420px; }
.skills-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.skill-card {
  background: var(--cream); padding: 32px; border-radius: 24px;
  border: 1px solid rgba(13,59,46,.06);
  transition: transform .3s, box-shadow .3s;
}
.skill-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(13,59,46,.15); }
.skill-card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--forest); color: var(--lime);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; transition: all .3s;
}
.skill-card:hover .skill-card__icon { background: var(--lime); color: var(--forest); transform: rotate(-5deg); }
.skill-card__icon svg { width: 26px; height: 26px; }
.skill-card__title {
  font-family: 'Fraunces', serif; font-size: 22px;
  letter-spacing: -.02em; font-weight: 500;
  color: var(--forest); margin-bottom: 10px;
}
.skill-card__desc { font-size: 15px; line-height: 1.5; color: var(--muted); }

/* ============================================================
   BANNER LIME
   ============================================================ */
.banner-lime {
  margin: 0 32px;
  background: var(--lime); border-radius: 36px;
  padding: 56px 60px; position: relative; overflow: hidden;
}
.banner-lime::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, var(--forest), transparent 60%);
  opacity: .07; pointer-events: none;
}
.banner-lime__inner { position: relative; z-index: 1; max-width: 820px; }
.banner-lime__inner .h2 { margin-bottom: 24px; }
.banner-lime__inner p {
  font-size: 18px; line-height: 1.6; color: var(--ink);
  opacity: .85; margin-bottom: 32px; max-width: 620px;
}
.banner-stats { display: flex; gap: 48px; flex-wrap: wrap; margin-bottom: 36px; }
.banner-stat__num {
  font-family: 'Fraunces', serif; font-size: 52px;
  letter-spacing: -.04em; line-height: 1; color: var(--ink); margin-bottom: 4px;
}
.banner-stat__label { font-size: 13px; color: var(--ink); opacity: .65; letter-spacing: .04em; }

/* ============================================================
   IDEAL PARA
   ============================================================ */
.ideal-section { background: var(--forest); color: var(--cream); padding: 80px 32px; }
.ideal-wrap { max-width: 1400px; margin: 0 auto; }
.ideal-head { max-width: 820px; margin-bottom: 64px; }
.ideal-list { display: grid; grid-template-columns: repeat(2,1fr); }
.ideal-item {
  padding: 30px 0; border-top: 1px solid rgba(245,241,232,.15);
  display: flex; align-items: center; gap: 24px;
  transition: padding-left .3s;
}
.ideal-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(245,241,232,.15); }
.ideal-item:hover { padding-left: 12px; }
.ideal-check {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--lime); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-weight: 700; font-size: 15px;
}
.ideal-text {
  font-family: 'Fraunces', serif; font-size: 24px;
  letter-spacing: -.015em; line-height: 1.2; font-weight: 400;
}

/* ============================================================
   GALERÍA DE FOTOS (placeholder)
   ============================================================ */
.gallery { padding: 80px 32px; }
.gallery__grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery__item {
  border-radius: 20px; overflow: hidden;
  background: var(--cream-dark); position: relative;
  min-height: 260px;
}
.gallery__item--big { grid-row: span 2; min-height: 540px; }
.gallery__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--muted); gap: 10px; font-size: 13px;
  text-align: center; padding: 20px;
}
.gallery__placeholder svg { width: 36px; height: 36px; opacity: .4; }
/* Cuando tengas fotos reales: reemplaza .gallery__item con <img> o background-image */

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: 80px 32px; }
.faq-head { max-width: 900px; margin: 0 auto 56px; text-align: center; }
.faq-wrap { max-width: 900px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(13,59,46,.15); }
.faq-btn {
  width: 100%; background: none; border: none;
  padding: 28px 0; text-align: left; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: 'Fraunces', serif; font-size: 21px; font-weight: 500;
  color: var(--forest); transition: color .2s;
}
.faq-btn:hover { color: var(--green); }
.faq-toggle {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--sage); color: var(--forest); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; transition: all .3s; line-height: 1;
}
.faq-item.open .faq-toggle { background: var(--lime); transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 0 28px; }
.faq-answer p { font-size: 16px; line-height: 1.65; color: var(--muted); max-width: 760px; }
.faq-answer strong { color: var(--forest); font-weight: 600; }

/* ============================================================
   ACTIVIDADES RELACIONADAS
   ============================================================ */
.related-section { background: var(--cream-dark); padding: 80px 32px; }
.related-head {
  max-width: 1400px; margin: 0 auto 56px;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; flex-wrap: wrap;
}
.related-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.related-card {
  position: relative; border-radius: 28px; overflow: hidden;
  aspect-ratio: 4/5; cursor: pointer;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
  padding: 32px; display: flex; flex-direction: column;
  justify-content: space-between; color: var(--cream);
  isolation: isolate;
}
.related-card:hover { transform: translateY(-4px); }
.related-card__bg {
  position: absolute; inset: 0; z-index: -2;
  transition: transform .6s;
}
.related-card:hover .related-card__bg { transform: scale(1.07); }
.related-card::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(10,22,18,.85), rgba(10,22,18,.1) 60%, transparent);
}
.related-card__tag {
  align-self: flex-start;
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--lime);
  padding: 5px 10px; border-radius: 100px;
  background: rgba(13,22,18,.55);
  backdrop-filter: blur(8px);
}
.related-card__title {
  font-family: 'Fraunces', serif; font-size: 34px;
  line-height: .95; letter-spacing: -.02em; font-weight: 400;
  margin-bottom: 10px;
}
.related-card__desc { font-size: 14px; line-height: 1.5; opacity: .85; margin-bottom: 20px; max-width: 280px; }
.related-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--lime);
}
.related-card__soon {
  position: absolute; top: 22px; right: 22px; z-index: 2;
  padding: 5px 12px; border-radius: 100px;
  background: var(--lime); color: var(--ink);
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}

/* Fondos de tarjetas related (gradient por categoría) */
.bg--cooking   { background: linear-gradient(135deg,#8b3a1f,#c7552a,#e08845); }
.bg--sushi     { background: linear-gradient(135deg,#1f4d3a,#2a6e4f,#d4a574); }
.bg--coctel    { background: linear-gradient(135deg,#4a2c5e,#c9a227,#ffd966); }
.bg--pizza     { background: linear-gradient(135deg,#6b1e1e,#c73e3a,#e89a3c); }
.bg--concurso  { background: linear-gradient(135deg,#0d3b2e,#2a8a5f,#6fbc4e); }
.bg--karaoke   { background: linear-gradient(135deg,#3a1248,#8a1e72,#e83e8c); }
.bg--calamar   { background: linear-gradient(135deg,#1a0410,#5c1430,#d63a5e); }
.bg--escape    { background: linear-gradient(135deg,#0a1830,#1e3a6e,#3a6abf); }
.bg--misterio  { background: linear-gradient(135deg,#2a1f12,#5c432a,#a07a4a); }
.bg--csi       { background: linear-gradient(135deg,#0a0a14,#1a1d2e,#2d3250); }
.bg--pirata    { background: linear-gradient(135deg,#1a2838,#2e4a5e,#6a8a9a); }
.bg--actores   { background: linear-gradient(135deg,#4a0a0a,#8b1414,#c03030); }
.bg--lienzo    { background: linear-gradient(135deg,#5e2a6b,#c9523a,#f0a040); }
.bg--autos     { background: linear-gradient(135deg,#3a2a1a,#8a5a2a,#c48a3a); }
.bg--bicis     { background: linear-gradient(135deg,#0d3b2e,#2a8a5f,#5cb8a0); }
.bg--arquitectos { background: linear-gradient(135deg,#2a3a1e,#5a7a3a,#a0ba5e); }
.bg--tech      { background: linear-gradient(135deg,#0a1a3a,#2a4a8e,#5a8adf); }
.bg--family    { background: linear-gradient(135deg,#1a6ec4,#4a9ee8,#7dc5f0); }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-section {
  padding: 0 32px 80px;
}
.cta-box {
  max-width: 1400px; margin: 0 auto;
  background: var(--ink); border-radius: 40px;
  padding: 72px 60px; position: relative; overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; top: -30%; right: -10%;
  width: 60%; height: 160%;
  background: radial-gradient(circle, var(--lime), transparent 60%);
  opacity: .14; pointer-events: none;
}
.cta-box__inner { position: relative; z-index: 1; max-width: 900px; }
.cta-box__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px,5.5vw,88px);
  line-height: .95; letter-spacing: -.035em; font-weight: 400;
  color: var(--cream); margin-bottom: 28px;
}
.cta-box__title em { color: var(--lime); font-style: italic; font-weight: 300; }
.cta-box__sub {
  font-size: 19px; color: var(--cream); opacity: .75;
  max-width: 560px; margin-bottom: 40px; line-height: 1.5;
}
.cta-box__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial { padding: 80px 32px; text-align: center; }
.testimonial__wrap { max-width: 1100px; margin: 0 auto; }
.testimonial__quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px,4vw,56px);
  line-height: 1.1; letter-spacing: -.025em;
  font-weight: 300; font-style: italic; color: var(--forest);
  margin-bottom: 36px;
}
.testimonial__quote::before {
  content: '"';
  display: block; font-size: 110px; color: var(--lime);
  line-height: .5; margin-bottom: 20px; font-style: normal;
}
.testimonial__author {
  font-size: 13px; color: var(--muted); font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-section { background: var(--forest); color: var(--cream); padding: 80px 32px; }
.stats-head { max-width: 1400px; margin: 0 auto 72px; }
.stats-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid rgba(245,241,232,.15);
}
.stat-item { padding: 48px 32px 0 0; border-right: 1px solid rgba(245,241,232,.15); }
.stat-item:last-child { border-right: none; padding-right: 0; }
.stat-item__num {
  font-family: 'Fraunces', serif; font-size: 88px;
  letter-spacing: -.04em; line-height: 1; font-weight: 400;
  color: var(--lime);
}
.stat-item__num .plus { font-size: 56px; vertical-align: super; color: var(--cream); opacity: .5; }
.stat-item__label { font-size: 15px; color: var(--cream); opacity: .7; margin-top: 18px; max-width: 200px; line-height: 1.4; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { padding: 60px 32px 40px; background: var(--cream); }
.footer-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(13,59,46,.15);
}
.footer-brand h3 {
  font-family: 'Fraunces', serif; font-size: 34px;
  font-weight: 400; letter-spacing: -.02em; color: var(--forest); margin-bottom: 14px;
}
.footer-brand p { color: var(--muted); max-width: 340px; font-size: 15px; line-height: 1.5; }
.footer-col h4 {
  font-size: 12px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--forest); margin-bottom: 18px;
}
.footer-col a {
  display: block; color: var(--muted); font-size: 15px;
  margin-bottom: 10px; transition: color .2s;
}
.footer-col a:hover { color: var(--forest); }
.footer-bottom {
  max-width: 1400px; margin: 0 auto; padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--muted); flex-wrap: wrap; gap: 12px;
}

/* ============================================================
   HOME — secciones específicas
   ============================================================ */
.hero-home {
  padding: 160px 32px 80px; position: relative; overflow: hidden;
}
.hero-home__grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: end;
  min-height: 72vh;
}
.hero-home__tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 10px; border-radius: 100px;
  background: var(--sage); color: var(--forest);
  font-size: 13px; font-weight: 500; margin-bottom: 32px;
}
.hero-home__tag-dot { width:7px;height:7px;border-radius:50%;background:var(--green); }
.hero-home__sub {
  font-size: 19px; color: var(--muted); max-width: 520px;
  margin-bottom: 40px; line-height: 1.55;
}
.hero-home__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Card hero derecho */
.hero-card {
  background: var(--forest); border-radius: 28px; padding: 32px;
  color: var(--cream); position: relative; overflow: hidden;
}
.hero-card--big {
  min-height: 340px;
  background: linear-gradient(135deg,var(--forest),var(--moss));
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-card--big::before {
  content:''; position:absolute; bottom:-60px; right:-60px;
  width:220px; height:220px; background:var(--lime);
  border-radius:50%; opacity:.18; filter:blur(30px);
}
.hero-card__label {
  font-size:12px; text-transform:uppercase; letter-spacing:.15em;
  color:var(--lime); margin-bottom:12px; font-weight:600;
}
.hero-card__title {
  font-family:'Fraunces',serif; font-size:32px; line-height:1.05;
  letter-spacing:-.02em; font-weight:400; position:relative; z-index:1;
}
.hero-stat-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.hero-stat-box {
  background:var(--cream-dark); padding:24px; border-radius:22px;
}
.hero-stat-box--lime { background:var(--lime); }
.hero-stat-num {
  font-family:'Fraunces',serif; font-size:46px; font-weight:400;
  letter-spacing:-.03em; line-height:1; color:var(--forest);
}
.hero-stat-label { font-size:13px; color:var(--forest); margin-top:8px; opacity:.75; }

/* Grid de eventos */
.events-section { padding: 80px 32px; }
.events-section .section-head {
  max-width: 1400px; margin: 0 auto 56px;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; flex-wrap: wrap;
}
.filters {
  max-width: 1400px; margin: 0 auto 40px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.filter-pill {
  padding: 10px 18px; border-radius: 100px;
  background: transparent; border: 1px solid rgba(13,59,46,.18);
  color: var(--forest); font-family:'Geist',sans-serif;
  font-size: 14px; font-weight: 500; cursor: pointer;
  transition: all .25s; display: inline-flex; align-items: center; gap: 8px;
}
.filter-pill:hover { border-color:var(--forest); background:rgba(13,59,46,.04); }
.filter-pill.active { background:var(--forest); color:var(--cream); border-color:var(--forest); }
.filter-pill .count { opacity:.6; font-size:12px; font-weight:400; }
.filter-pill.active .count { opacity:.7; }

.events-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
}
.event-card {
  position: relative; border-radius: 24px; overflow: hidden;
  cursor: pointer; aspect-ratio: 4/3;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px; color: var(--cream); isolation: isolate;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.event-card:hover { transform: translateY(-4px) scale(1.005); }
.event-card__bg {
  position: absolute; inset: 0; z-index: -2;
  transition: transform .6s;
}
.event-card:hover .event-card__bg { transform: scale(1.08); }
.event-card::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(10,22,18,.88), rgba(10,22,18,.2) 55%, transparent);
}
.event-card__cat {
  align-self: flex-start;
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--lime);
  padding: 5px 10px; border-radius: 100px;
  background: rgba(13,22,18,.55); backdrop-filter: blur(8px);
  margin-bottom: 8px;
}
.event-card__title {
  font-family: 'Fraunces', serif; font-size: 28px;
  line-height: 1; letter-spacing: -.02em; font-weight: 400;
}
.event-card__icon {
  position: absolute; top: 22px; right: 22px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(245,241,232,.14); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(245,241,232,.2); transition: all .3s;
}
.event-card:hover .event-card__icon { background: var(--lime); border-color: var(--lime); }
.event-card__icon svg { width: 20px; height: 20px; color: var(--cream); transition: color .3s; }
.event-card:hover .event-card__icon svg { color: var(--ink); }
.event-card.hidden { display: none; }
.event-card__soon {
  position: absolute; top: 22px; left: 22px; z-index: 2;
  padding: 5px 12px; border-radius: 100px;
  background: var(--lime); color: var(--ink);
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}

.events-cta {
  max-width: 1400px; margin: 48px auto 0;
  padding: 36px; border: 1.5px dashed rgba(13,59,46,.2);
  border-radius: 24px; text-align: center;
}
.events-cta p {
  font-family: 'Fraunces', serif; font-size: 22px;
  font-style: italic; color: var(--forest); margin-bottom: 18px;
}

/* ============================================================
   QUIÉNES SOMOS — secciones específicas
   ============================================================ */
.values-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 20px;
}
.value-card {
  background: var(--sage); border-radius: 24px; padding: 36px;
  transition: transform .3s;
}
.value-card:hover { transform: translateY(-4px); }
.value-card:nth-child(2) { background: var(--forest); color: var(--cream); }
.value-card:nth-child(3) { background: var(--lime); }
.value-num {
  font-family: 'Fraunces', serif; font-size: 56px;
  letter-spacing: -.04em; color: var(--lime); margin-bottom: 16px; line-height: 1;
}
.value-card:nth-child(3) .value-num { color: var(--forest); }
.value-title {
  font-family: 'Fraunces', serif; font-size: 26px;
  letter-spacing: -.02em; margin-bottom: 10px;
}
.value-desc { font-size: 15px; line-height: 1.55; opacity: .85; }

/* ============================================================
   CONTACTO
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
.contact-info-block { margin-bottom: 32px; }
.contact-info-block h3 {
  font-family: 'Fraunces', serif; font-size: 22px;
  font-weight: 500; color: var(--forest); margin-bottom: 8px;
}
.contact-info-block p,
.contact-info-block a {
  font-size: 17px; color: var(--muted); line-height: 1.5; text-decoration: none;
  transition: color .2s;
}
.contact-info-block a:hover { color: var(--forest); }

/* ============================================================
   PROCESO 3 PASOS (alternativa light)
   ============================================================ */
.process-light {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.process-step {
  padding: 40px 32px; border-radius: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 280px;
}
.process-step:nth-child(1){ background:var(--sage); }
.process-step:nth-child(2){ background:var(--lime); }
.process-step:nth-child(3){ background:var(--forest); color:var(--cream); }
.process-step__num {
  font-family:'Fraunces',serif; font-size:64px; font-weight:400;
  letter-spacing:-.04em; line-height:1; color:var(--forest); margin-bottom:32px;
}
.process-step:nth-child(3) .process-step__num { color:var(--lime); }
.process-step__title {
  font-family:'Fraunces',serif; font-size:24px;
  letter-spacing:-.02em; margin-bottom:10px; font-weight:400;
}
.process-step__desc { font-size:15px; line-height:1.5; opacity:.85; }

/* ============================================================
   BLOG / LISTADO
   ============================================================ */
.blog-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.blog-card { border-radius: 24px; overflow: hidden; background: var(--cream-dark); }
.blog-card__img {
  aspect-ratio: 16/9; background: var(--sage);
  /* FOTO: aquí va la imagen del post */
}
.blog-card__body { padding: 28px; }
.blog-card__cat {
  font-size: 12px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green); margin-bottom: 10px;
}
.blog-card__title {
  font-family: 'Fraunces', serif; font-size: 24px;
  letter-spacing: -.02em; color: var(--forest); margin-bottom: 12px; line-height: 1.1;
}
.blog-card__excerpt { font-size: 15px; line-height: 1.5; color: var(--muted); margin-bottom: 20px; }
.blog-card__link {
  font-size: 14px; font-weight: 500; color: var(--green);
  display: inline-flex; align-items: center; gap: 6px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1024px){
  .hero-home__grid,.hero-act__grid,.intro-split,
  .jury-split,.contact-grid { grid-template-columns:1fr; gap:48px; }
  .hero-visual { max-width:420px; margin:0 auto; }
  .dark-section__head { grid-template-columns:1fr; gap:32px; }
  .steps-grid,.skills-grid,.related-grid,.blog-grid { grid-template-columns:repeat(2,1fr); }
  .events-grid { grid-template-columns:repeat(2,1fr); }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .stat-item:nth-child(2){ border-right:none; }
  .stat-item:nth-child(1),.stat-item:nth-child(2){
    border-bottom:1px solid rgba(245,241,232,.15); padding-bottom:48px; margin-bottom:48px;
  }
  .footer-grid { grid-template-columns:1fr 1fr; gap:40px; }
  .ideal-list { grid-template-columns:1fr; }
  .ideal-item:nth-last-child(-n+2){ border-bottom:none; }
  .ideal-item:last-child{ border-bottom:1px solid rgba(245,241,232,.15); }
  .skills-head { grid-template-columns:1fr; gap:24px; }
  .process-light { grid-template-columns:1fr; }
  .values-grid { grid-template-columns:1fr; }
}
@media(max-width:640px){
  .nav{ padding:16px 20px; }
  .nav__links{ display:none; }
  .hero-home,.hero-act,.section--alt,.dark-section,.skills-section,
  .ideal-section,.related-section,.faq-section,.cta-section,
  .testimonial,.stats-section,.events-section,.gallery,.banner-lime
  { padding-left:20px; padding-right:20px; }
  .section{ padding-left:20px; padding-right:20px; }
  .hero-home{ padding-top:110px; padding-bottom:60px; }
  .hero-act{ padding-top:110px; padding-bottom:50px; }
  .h1{ font-size:clamp(44px,11vw,80px); }
  .h2{ font-size:clamp(32px,8vw,52px); }
  .events-grid,.related-grid,.blog-grid,.steps-grid,
  .skills-grid,.stats-grid{ grid-template-columns:1fr; }
  .stat-item{ border-right:none !important; border-bottom:1px solid rgba(245,241,232,.15); padding:40px 0; }
  .stat-item:last-child{ border-bottom:none; }
  .stat-item__num{ font-size:72px; }
  .hero-act__specs{ flex-direction:column; }
  .spec-box{ border-right:none; border-bottom:1px solid rgba(13,59,46,.12); }
  .spec-box:last-child{ border-bottom:none; }
  .hero-stat-row{ grid-template-columns:1fr; }
  .banner-lime{ margin:0 16px; padding:48px 28px; border-radius:24px; }
  .banner-stats{ gap:28px; }
  .cta-box{ padding:60px 28px; border-radius:28px; }
  .footer-grid{ grid-template-columns:1fr; gap:32px; }
  .hero-home__grid{ gap:48px; }
  .dark-section__head{ gap:28px; }
  .step{ min-height:260px; padding:28px 24px; }
  .step__num{ font-size:68px; }
}
