/* Taller Garbanzo — playful & clean, garbanzo yellow + leaf green */

:root {
  --bg: #ffffff;
  --bg-soft: #f6efd8;
  --bg-cream: #fdf7e8;
  --card: #ffffff;
  --ink: #1f2b1f;
  --ink-soft: #5a6b5a;
  --ink-muted: #a4aca4;

  --leaf: #4a8a3c;
  --leaf-soft: #d3e6c8;
  --leaf-soft2: #e8f2e0;
  --leaf-dark: #2f5f24;
  --leaf-darker: #234818;

  --garbanzo: #f5c518;
  --garbanzo-soft: #fdf1c1;
  --garbanzo-dark: #b8930d;

  --accent: var(--leaf);
  --accent-soft: var(--leaf-soft);
  --accent-hover: var(--leaf-dark);

  --border: #e8e2cc;
  --border-soft: #f2ecd8;
  --shadow-sm: 0 2px 4px rgba(31, 43, 31, 0.04), 0 8px 16px rgba(31, 43, 31, 0.05);
  --shadow-md: 0 4px 8px rgba(31, 43, 31, 0.06), 0 16px 32px rgba(31, 43, 31, 0.08);
  --shadow-yellow: 0 4px 12px rgba(245, 197, 24, 0.25), 0 12px 32px rgba(245, 197, 24, 0.15);
  --shadow-green: 0 4px 12px rgba(74, 138, 60, 0.25), 0 12px 32px rgba(74, 138, 60, 0.15);

  --font: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--leaf-dark); text-decoration: none; font-weight: 600; }
a:hover { color: var(--leaf-darker); }

h1, h2, h3, h4, h5, h6 { font-family: var(--font); font-weight: 800; color: var(--ink); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* ---- Top bar with contact ---- */
.top-bar {
  background: var(--leaf);
  color: white;
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar-contact { display: flex; gap: 24px; flex-wrap: wrap; }
.top-bar a { color: white !important; text-decoration: none; transition: opacity 0.15s; font-weight: 600; }
.top-bar a:hover { opacity: 0.85; color: white !important; }
@media (max-width: 640px) {
  .top-bar { font-size: 12.5px; }
  .top-bar-inner { justify-content: center; text-align: center; }
  .top-bar-contact { gap: 14px; justify-content: center; }
}

/* ---- Header (green brand band) ---- */
.site-header {
  background: var(--leaf-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 8px;
  gap: 24px;
}
@media (max-width: 640px) {
  .header-inner { padding: 12px 12px; }
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.brand-mark { font-size: 26px; }
.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  background: white;
  padding: 4px;
  border-radius: 50%;
}
.site-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.site-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 700;
  transition: color 0.15s;
}
.site-nav a:hover, .site-nav a.active { color: white; }
.nav-cta {
  background: var(--garbanzo);
  color: var(--ink) !important;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  transition: all 0.15s;
  box-shadow: var(--shadow-sm);
}
.nav-cta:hover {
  background: var(--garbanzo-dark);
  color: white !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
  padding: 4px 8px;
}
@media (max-width: 820px) {
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--leaf-dark); flex-direction: column; padding: 24px; gap: 18px; border-top: 1px solid rgba(255,255,255,0.15); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
}

/* ---- Full-bleed hero ---- */
.hero-full {
  min-height: 620px;
  background-color: var(--leaf-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  display: flex;
  align-items: center;
  padding: 100px 0;
  position: relative;
}
.hero-full--sub {
  min-height: 340px;
  padding: 64px 0;
}
.hero-full--sub .hero-full-title { font-size: clamp(34px, 5vw, 56px); }
.hero-full-title-extra {
  display: inline-block;
  font-size: 0.55em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.005em;
  margin-top: 8px;
}
.hero-full-inner {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-eyebrow-white {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  color: white;
  font-size: 14px;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255,255,255,0.25);
}
.hero-full-title {
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 32px;
  color: white;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}
.hero-title-main { display: block; }
.hero-title-sub {
  display: block;
  font-size: 0.55em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.01em;
  margin-top: 8px;
}
.hero-full-subtitle {
  font-size: clamp(17px, 2.1vw, 22px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 auto 40px;
  max-width: 700px;
  line-height: 1.5;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}
.btn-outline-white {
  background: transparent;
  color: white !important;
  border-color: white;
}
.btn-outline-white:hover {
  background: white;
  color: var(--leaf-dark) !important;
}

.hero-cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.005em;
}
.btn-primary {
  background: var(--leaf);
  color: white !important;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background: var(--leaf-dark);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(74, 138, 60, 0.35), 0 16px 40px rgba(74, 138, 60, 0.2);
}
.btn-yellow {
  background: var(--garbanzo);
  color: var(--ink) !important;
  box-shadow: var(--shadow-yellow);
}
.btn-yellow:hover {
  background: var(--garbanzo-dark);
  color: white !important;
  transform: translateY(-2px);
}
.btn-secondary {
  background: var(--card);
  color: var(--leaf-dark) !important;
  border-color: var(--leaf);
}
.btn-secondary:hover {
  background: var(--leaf);
  color: white !important;
  border-color: var(--leaf);
}
.btn-whatsapp {
  background: #25D366;
  color: white !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-whatsapp:hover { background: #128C7E; color: white !important; }

/* ---- Sections ---- */
.section { padding: 80px 0; }
.section-tinted { background: var(--bg-soft); }
.section-cream { background: var(--bg-cream); }
.section-eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--leaf);
  margin: 0 0 14px;
  text-align: center;
}
.section-title {
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 20px;
  color: var(--ink);
  line-height: 1.1;
}
.section-lead {
  color: var(--ink-soft);
  font-size: 18px;
  text-align: center;
  max-width: 880px;
  margin: 0 auto 56px;
  line-height: 1.55;
  font-weight: 500;
}

/* ---- Manifesto (home) ---- */
.manifesto {
  background: var(--card);
  padding: 48px 56px;
  border-radius: var(--radius);
  border: 2px solid var(--border-soft);
  box-shadow: var(--shadow-md);
  color: var(--ink);
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.manifesto-title {
  font-size: 26px;
  font-weight: 900;
  color: var(--leaf-dark);
  margin: 0 0 20px;
  letter-spacing: -0.015em;
}
.manifesto-p {
  font-size: 17.5px;
  font-weight: 500;
  line-height: 1.65;
  margin: 0 0 16px;
}
.manifesto-p:last-of-type { margin-bottom: 0; }
.manifesto::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 40px;
  width: 60px;
  height: 6px;
  background: var(--garbanzo);
  border-radius: 4px;
}
.manifesto::after {
  content: '';
  position: absolute;
  top: -14px;
  left: 108px;
  width: 30px;
  height: 6px;
  background: var(--leaf);
  border-radius: 4px;
}
.manifesto-signature {
  display: block;
  margin-top: 24px;
  color: var(--leaf-dark);
  font-size: 14px;
  font-weight: 800;
  text-align: right;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
@media (max-width: 640px) { .manifesto { padding: 36px 26px; font-size: 18px; } }

/* ---- Highlights grid ---- */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-top: 32px;
}
.highlight-card {
  background: var(--card);
  border: 2px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: all 0.2s;
  text-align: center;
}
.highlight-card:hover {
  border-color: var(--leaf);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.highlight-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  background: var(--garbanzo-soft);
  border-radius: 50%;
}
.highlight-title {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.highlight-text { color: var(--ink-soft); font-size: 15px; margin: 0; font-weight: 500; }

/* ---- Módulos ---- */
.modulos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin: 28px 0 8px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .modulos { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .modulos { grid-template-columns: repeat(2, 1fr); }
}
.modulo-card {
  background: var(--card);
  border: 2px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 22px 14px 18px;
  text-align: center;
  transition: all 0.2s;
}
.modulo-card:hover { border-color: var(--garbanzo); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.modulo-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--garbanzo-dark);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.modulo-title {
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 4px;
  color: var(--ink);
  line-height: 1.2;
  min-height: 2.4em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modulo-meses {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0 0 10px;
  letter-spacing: 0.005em;
}
.modulo-estado {
  font-size: 10px !important;
  padding: 4px 10px !important;
}
.modulo-estado {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}
.modulo-estado.finalizado { background: var(--bg-soft); color: var(--ink-muted); }
.modulo-estado.encurso { background: var(--garbanzo); color: var(--ink); }
.modulo-estado.proximo { background: var(--leaf-soft); color: var(--leaf-darker); }

/* ---- Detalles grid (compact info chips) ---- */
.detalle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0 40px;
}
@media (max-width: 720px) {
  .detalle-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .detalle-grid { grid-template-columns: 1fr; }
}
.detalle-item {
  padding: 14px 16px 14px 40px;
  background: var(--card);
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-soft);
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 500;
  position: relative;
  line-height: 1.45;
}
.detalle-item::before {
  content: '✓';
  position: absolute;
  left: 12px;
  top: 12px;
  width: 20px;
  height: 20px;
  background: var(--leaf);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 11px;
}

/* Section modifiers */
.section--compact { padding: 48px 0; }
.section--compact-b { padding-bottom: 32px; }
.section--compact-t { padding-top: 32px; }

/* ---- Precios card ---- */
.precios-wrap {
  background: var(--card);
  border-radius: var(--radius);
  padding: 44px;
  border: 2px solid var(--border-soft);
  box-shadow: var(--shadow-md);
  margin-top: 40px;
}
.precios-title {
  font-size: 26px;
  font-weight: 900;
  margin: 0 0 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.precios-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 28px 0;
}
.precio-tier {
  background: var(--leaf-soft2);
  padding: 26px 22px;
  border-radius: var(--radius);
  text-align: center;
  border: 2px solid var(--leaf-soft);
  position: relative;
}
.precio-tier--featured {
  background: var(--leaf-soft);
  border-color: var(--leaf);
}
.precio-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--garbanzo);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-yellow);
  transform: rotate(6deg);
  border: 2px solid white;
}
.precio-tier .valor {
  font-size: 34px;
  font-weight: 900;
  color: var(--leaf-dark);
  margin-bottom: 6px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.precio-tier .detalle { font-size: 13px; color: var(--ink-soft); font-weight: 600; }
.precios-note {
  background: var(--garbanzo-soft);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  color: #6b5000;
  font-size: 15px;
  font-weight: 600;
  margin: 20px 0 0;
  border-left: 4px solid var(--garbanzo);
}
@media (max-width: 640px) { .precios-wrap { padding: 30px 22px; } }

/* ---- Horarios grid ---- */
.horarios-info {
  background: var(--card);
  border: 2px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 36px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}
.horarios-info strong { color: var(--ink); font-weight: 800; }
.horarios-info p { margin: 0 0 12px; }
.horarios-info p:last-child { margin-bottom: 0; }

.horarios-intro {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
  margin: 40px auto 0;
  max-width: 720px;
  text-align: center;
}

.horarios-callout {
  background: var(--garbanzo-soft);
  border: 2px solid var(--garbanzo);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 36px;
  position: relative;
}
.horarios-callout-badge {
  display: inline-block;
  background: var(--garbanzo);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.horarios-callout-title {
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.horarios-callout-text {
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.horarios-opciones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 20px;
}
.horarios-opcion {
  background: var(--card);
  border: 2px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.horarios-opcion--link:hover {
  border-color: var(--leaf);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.horarios-opcion-arrow {
  color: var(--leaf-dark);
  font-weight: 900;
  margin-left: 4px;
  transition: transform 0.15s;
  display: inline-block;
}
.horarios-opcion--link:hover .horarios-opcion-arrow { transform: translateX(3px); }
.horarios-opcion-title {
  font-size: 16px;
  font-weight: 900;
  margin: 0 0 6px;
  color: var(--leaf-dark);
  letter-spacing: -0.005em;
}
.horarios-opcion-text {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
  font-weight: 500;
}
.horarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 720px) {
  .horarios-grid { grid-template-columns: 1fr; }
}
.horario-dia {
  background: var(--card);
  border-radius: var(--radius);
  border: 2px solid var(--border-soft);
  overflow: hidden;
}
.horario-dia-header {
  background: var(--leaf);
  color: white;
  padding: 16px 22px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.horario-slots { padding: 4px 0; }
.horario-slot {
  padding: 14px 22px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s;
}
@media (max-width: 720px) {
  .horario-slot {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }
  .horario-slot .slot-row { flex: 1 1 auto; }
  .horario-slot .slot-action { align-self: center; }
}
.horario-slot:first-child { border-top: none; }
.horario-slot--link {
  cursor: pointer;
  min-height: 56px;
}
.horario-slot--link:hover {
  background: var(--leaf-soft2);
  color: var(--ink);
}
/* Give the tap arrow a subtle bg on mobile so it reads as button */
@media (max-width: 720px) {
  .slot-cta {
    background: var(--leaf-soft);
    color: var(--leaf-darker);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
  }
}
.slot-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.slot-hora {
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.slot-edad {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.slot-edad.edad-chicos { background: var(--garbanzo-soft); color: var(--garbanzo-dark); }
.slot-edad.edad-grandes { background: var(--leaf-soft); color: var(--leaf-darker); }

/* Age color lives in the .slot-edad chip only. Completo rows fade slightly. */
.horario-slot .slot-estado.completo ~ * { opacity: 0.7; }
.horario-slot:has(.slot-estado.completo) { opacity: 0.75; }

/* Legend above the grid */
.horarios-legend {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 0 0 20px;
  flex-wrap: wrap;
}
.horarios-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-soft);
}
.legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
}
.legend-dot--chicos { background: var(--garbanzo); }
.legend-dot--grandes { background: var(--leaf); }
.slot-action {
  align-self: flex-start;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: all 0.15s;
  min-width: 128px;
  text-align: center;
  box-sizing: border-box;
}
.slot-action--disponible { background: var(--leaf); color: white; }
.slot-action--completo { background: #fde5e5; color: #8a3131; }
.slot-action--disponible span { margin-left: 4px; display: inline-block; transition: transform 0.15s; }
.horario-slot--link:hover .slot-action--disponible { background: var(--leaf-darker); }
.horario-slot--link:hover .slot-action--disponible span { transform: translateX(3px); }
@media (max-width: 720px) {
  .slot-action { font-size: 12.5px; padding: 8px 16px; }
}

/* ---- Menú vacaciones ---- */
.vaca-paquetes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 36px 0;
}
.vaca-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin: 36px 0;
}
.vaca-semana {
  background: var(--card);
  border: 2px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px 30px;
}
.vaca-semana h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--leaf-dark);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.vaca-semana ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vaca-semana li {
  padding: 12px 0;
  border-bottom: 2px dashed var(--border-soft);
  color: var(--ink);
}
.vaca-semana li:last-child { border-bottom: none; }
.vaca-semana .dia {
  font-weight: 900;
  color: var(--ink);
  display: block;
  font-size: 15px;
}
.vaca-semana .receta { color: var(--ink-soft); font-size: 14.5px; font-weight: 500; }

/* ---- Eventos cards ---- */
.eventos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
@media (max-width: 1100px) {
  .eventos-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (max-width: 560px) {
  .eventos-grid { grid-template-columns: 1fr; }
}
.evento-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 2px solid var(--border-soft);
  overflow: hidden;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.evento-card:hover {
  border-color: var(--garbanzo);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.evento-photo-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-soft);
}
.evento-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.evento-card:hover .evento-photo { transform: scale(1.03); }
.evento-body { padding: 20px 22px 24px; }
.evento-card:not(.evento-card--with-photo) .evento-body { padding: 28px 24px; }
.evento-title {
  font-size: 17px;
  font-weight: 900;
  margin: 0 0 10px;
  color: var(--leaf-dark);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.evento-text { color: var(--ink-soft); font-size: 13.5px; margin: 0; line-height: 1.55; font-weight: 500; }
@media (min-width: 1101px) {
  .evento-title { font-size: 16px; }
  .evento-text { font-size: 13px; }
}

/* ---- Sobre ---- */
.sobre-hero {
  padding: 72px 0 56px;
  background: var(--bg-cream);
  border-bottom: 2px solid var(--border-soft);
}
.sobre-hero-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 44px;
  align-items: center;
}
.sobre-avatar {
  font-size: 72px;
  display: inline-flex;
  width: 120px;
  height: 120px;
  align-items: center;
  justify-content: center;
  background: var(--garbanzo-soft);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}
.sobre-photo-wrap {
  position: relative;
  width: 260px;
  height: 260px;
}
.sobre-photo-wrap::before {
  content: "";
  position: absolute;
  inset: -12px -12px 12px 12px;
  background: var(--garbanzo);
  border-radius: 50%;
  opacity: 0.55;
  z-index: 0;
}
.sobre-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}
.sobre-hero-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.15;
}
.sobre-hero-subtitle {
  color: var(--ink-soft);
  font-size: 17px;
  font-style: italic;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 720px) {
  .sobre-hero-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .sobre-photo-wrap { margin: 0 auto; width: 220px; height: 220px; }
}
.sobre-body {
  padding: 56px 24px 80px;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .sobre-body { padding: 40px 22px 56px; }
}
.sobre-body p {
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 24px;
  font-weight: 500;
}
.sobre-body h2 {
  font-size: 28px;
  font-weight: 900;
  margin: 44px 0 18px;
  color: var(--leaf-dark);
  letter-spacing: -0.015em;
}

/* ---- Trayectoria gallery ---- */
.trayectoria-section {
  padding: 48px 0 56px;
  background: var(--bg-cream);
  border-top: 2px solid var(--border-soft);
}
.trayectoria-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink-soft);
  text-align: center;
  letter-spacing: 0.005em;
  margin: 0 0 26px;
}
.trayectoria-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .trayectoria-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .trayectoria-grid { grid-template-columns: repeat(2, 1fr); }
}
.trayectoria-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trayectoria-photo-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  border: 2px solid var(--border-soft);
}
.trayectoria-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.trayectoria-item:hover .trayectoria-photo { transform: scale(1.04); }
.trayectoria-caption {
  color: var(--ink-soft);
  font-size: 12.5px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.005em;
}

/* ---- Cómo llegar ---- */
.map-embed {
  width: 100%;
  height: 440px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  margin: 28px 0 36px;
}
.como-llegar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 36px;
}
.como-llegar-card {
  background: var(--card);
  border: 2px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s;
}
.como-llegar-card:hover { border-color: var(--leaf); box-shadow: var(--shadow-sm); }
.como-llegar-card h3 {
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 14px;
  color: var(--leaf-dark);
  letter-spacing: -0.005em;
}
.como-llegar-card p, .como-llegar-card li {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0 0 6px;
  font-weight: 500;
}
.como-llegar-card ul { padding-left: 20px; margin: 0; }
.como-llegar-card a { color: var(--leaf-dark); font-weight: 600; }
.como-llegar-card a:hover { color: var(--leaf-darker); text-decoration: underline; }
.cafe-dist { color: var(--ink-muted); font-weight: 500; font-size: 13px; }

/* ---- Materias primas (Las Clases) ---- */
.materias-primas {
  background: white;
  border: 2px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px 40px 28px;
  margin: 48px 0 0;
  text-align: center;
}
.materias-primas-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--leaf-dark);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.materias-primas-text {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
  margin: 0 auto 24px;
  max-width: 720px;
  text-align: center;
}
.materias-primas-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  min-height: 80px;
}
.proveedor-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  width: 170px;
  height: 84px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: transform 0.15s;
  box-sizing: border-box;
}
.proveedor-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.2s;
}
.proveedor-logo:hover { transform: translateY(-2px); }
.proveedor-placeholder {
  padding: 24px 32px;
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  color: var(--ink-muted);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .materias-primas { padding: 28px 22px; }
  .materias-primas-title { font-size: 19px; }
}

/* ---- Contacto form ---- */
.contacto-form {
  background: var(--card);
  border: 2px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 36px 40px;
  max-width: 720px;
  margin: 40px auto 48px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .contacto-form { padding: 28px 24px; }
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.005em;
}
.form-req { color: var(--leaf); font-weight: 900; }
.contacto-form input[type="text"],
.contacto-form input[type="email"],
.contacto-form input[type="tel"],
.contacto-form select,
.contacto-form textarea {
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
  box-sizing: border-box;
}
.contacto-form textarea { resize: vertical; min-height: 110px; line-height: 1.55; }
.contacto-form select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%235a6b5a' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.contacto-form input:focus,
.contacto-form select:focus,
.contacto-form textarea:focus {
  outline: none;
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(74, 138, 60, 0.15);
}
.form-submit {
  align-self: center;
  min-width: 220px;
  margin-top: 8px;
}
.form-note {
  text-align: center;
  color: var(--ink-soft);
  font-size: 13.5px;
  font-weight: 500;
  margin: 4px 0 0;
}
.contacto-form-ok {
  background: var(--leaf-soft2);
  border: 2px solid var(--leaf);
  border-radius: var(--radius);
  padding: 40px 32px;
  max-width: 720px;
  margin: 40px auto 48px;
  text-align: center;
}
.contacto-ok-icon { font-size: 48px; margin-bottom: 12px; }
.contacto-ok-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--leaf-darker);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.contacto-ok-text {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
  margin: 0;
}

/* ---- Contacto ---- */
.contacto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  max-width: 900px;
  margin: 36px auto 0;
}
.contacto-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
}
@media (max-width: 720px) {
  .contacto-grid--3 { grid-template-columns: 1fr; }
}
.contacto-card {
  background: var(--card);
  border: 2px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  transition: all 0.2s;
}
.contacto-card:hover { border-color: var(--leaf); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contacto-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: inline-flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  background: var(--garbanzo-soft);
  border-radius: 50%;
}
.contacto-label { font-size: 13px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; font-weight: 800; }
.contacto-value {
  font-size: 15px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.005em;
  white-space: nowrap;
  max-width: 100%;
}
.contacto-grid--secondary { margin-top: 20px; align-items: stretch; }
.contacto-grid--secondary .contacto-card {
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contacto-grid--secondary .contacto-icon {
  margin-left: auto;
  margin-right: auto;
}

/* ---- CTA banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--leaf) 0%, var(--leaf-dark) 100%);
  color: white;
  padding: 64px 44px;
  border-radius: var(--radius);
  text-align: center;
  margin: 56px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: var(--garbanzo);
  border-radius: 50%;
  opacity: 0.25;
}
.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: var(--garbanzo-soft);
  border-radius: 50%;
  opacity: 0.15;
}
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 900;
  margin: 0 0 14px;
  color: white;
  letter-spacing: -0.015em;
}
.cta-banner p { color: rgba(255,255,255,0.92); font-size: 17px; margin: 0 0 28px; font-weight: 500; }
.cta-banner--tight { padding: 52px 44px; }
.cta-banner--tight h2 { margin-bottom: 24px; }
.cta-banner .btn {
  background: var(--garbanzo);
  color: var(--ink) !important;
  box-shadow: var(--shadow-yellow);
}
.cta-banner .btn:hover { background: white; color: var(--leaf-dark) !important; }

/* ---- Footer ---- */
.site-footer {
  border-top: 2px solid var(--border);
  padding: 56px 0 32px;
  background: var(--bg-cream);
  color: var(--ink-soft);
  font-size: 14.5px;
  font-weight: 500;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-col h4 {
  font-size: 16px;
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}
.footer-col a { color: var(--ink-soft); display: block; padding: 4px 0; font-weight: 500; }
.footer-col a:hover { color: var(--leaf); }
.footer-bottom {
  border-top: 2px solid var(--border);
  padding-top: 22px;
  text-align: center;
  color: var(--ink-muted);
  font-size: 13.5px;
}
.footer-bottom a { color: var(--leaf); }
@media (max-width: 640px) { .footer-inner { grid-template-columns: 1fr; gap: 26px; } }

/* ---- Photo grid ---- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin: 32px 0;
}
.photo-grid img {
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.photo-grid img:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---- Hola, soy Maxi (home) ---- */
.meMaxi {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}
.meMaxi--no-photo {
  grid-template-columns: 1fr;
  max-width: 720px;
  text-align: center;
}
.meMaxi--no-photo .meMaxi-quote { font-size: 20px; }
.meMaxi-photo-wrap {
  position: relative;
}
.meMaxi-photo-wrap::before {
  content: "";
  position: absolute;
  inset: -12px -12px 12px 12px;
  background: var(--garbanzo);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.55;
}
.meMaxi-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: var(--shadow-md);
}
.meMaxi-greeting {
  font-size: 32px;
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 4px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.meMaxi-role {
  color: var(--leaf-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.meMaxi-quote {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 14px;
}
.meMaxi-quote:last-of-type { margin-bottom: 20px; }
.meMaxi-quote + .meMaxi-quote {
  font-style: italic;
  color: var(--leaf-dark);
  font-weight: 700;
}
.meMaxi-link {
  display: inline-block;
  color: var(--leaf-dark);
  font-size: 15px;
  font-weight: 800;
  border-bottom: 2px solid var(--garbanzo);
  padding-bottom: 2px;
  transition: all 0.15s;
}
.meMaxi-link:hover {
  color: var(--leaf-darker);
  border-bottom-color: var(--leaf);
}
@media (max-width: 720px) {
  .meMaxi { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .meMaxi-photo-wrap { max-width: 220px; margin: 0 auto; }
  .meMaxi-greeting { font-size: 28px; }
}

/* ---- Testimonios ---- */
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
@media (max-width: 1100px) {
  .testimonios-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .testimonios-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .testimonios-grid { grid-template-columns: 1fr; }
}
.testimonio-card {
  background: var(--card);
  border: 2px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 20px 22px 18px;
  position: relative;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.testimonio-card:hover {
  border-color: var(--garbanzo);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonio-stars {
  color: var(--garbanzo);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.testimonio-quote {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 16px;
  flex: 1;
}
.testimonio-quote::before { content: "\201C"; color: var(--garbanzo); font-weight: 900; margin-right: 2px; }
.testimonio-quote::after { content: "\201D"; color: var(--garbanzo); font-weight: 900; }
.testimonios-source {
  text-align: center;
  margin: 32px 0 0;
  font-size: 14.5px;
  font-weight: 600;
}
.testimonios-source a { color: var(--leaf-dark); }
.testimonios-source a:hover { color: var(--leaf-darker); }
.testimonio-author {
  border-top: 2px dashed var(--border-soft);
  padding-top: 16px;
}
.testimonio-name {
  font-weight: 900;
  color: var(--ink);
  font-size: 13.5px;
  letter-spacing: -0.005em;
}
.testimonio-kid {
  font-size: 12.5px;
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: 2px;
}
.testimonio-author { padding-top: 12px; }

/* ---- Clases destacado (highlighted lead sentence, italic verde) ---- */
.clases-destacado {
  margin: 20px auto 0;
  max-width: 720px;
  font-size: 19px;
  font-weight: 700;
  font-style: italic;
  color: var(--leaf-dark);
  line-height: 1.5;
  text-align: center;
}

/* ---- Recetario callout (Sobre) ---- */
.recetario-callout {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}

/* ---- Vacaciones especial (extends .precios-wrap) ---- */
.precios-wrap--especial { margin-top: 48px; }
.especial-desc { margin: 0; color: var(--ink); }

/* ---- Precios info lines (block after tiers) ---- */
.precios-info {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 2px dashed var(--border-soft);
}
.precios-info-line { color: var(--ink-soft); margin: 0 0 8px; font-size: 15px; line-height: 1.5; }
.precios-info-line:last-child { margin-bottom: 0; }

/* ---- Sub-lead (small centered lead under sub-h2) ---- */
.sub-lead { text-align: center; color: var(--ink-soft); margin: 0 0 20px; }

/* ---- Como llegar CTA ---- */
.como-llegar-map-cta { text-align: center; margin: 24px 0 32px; }

/* ---- Section lead followup (tight after previous lead) ---- */
.section-lead--follow { margin-top: -48px; }

/* ---- Section sub-headings ---- */
.sub-h2 {
  font-family: var(--font);
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  margin: 56px 0 20px;
  letter-spacing: -0.01em;
}
.sub-h2--center { text-align: center; margin: 48px 0 8px; }
.sub-h2--sm { font-size: 24px; margin: 32px 0 8px; }
.sub-h3 {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}

/* ---- 404 ---- */
.notfound { text-align: center; padding: 120px 0; }
.notfound-code {
  font-family: var(--font);
  font-size: 88px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.mt-lg { margin-top: 40px; }
.mb-lg { margin-bottom: 40px; }
