:root {
  color-scheme: light;
  --ink: #0b0b0b;
  --muted: #4a4a4a;
  --paper: #ffffff;
  --mist: #f7f9f8;
  --accent: #009c8c;
  --accent-strong: #007a6e;
  --accent-soft: rgba(0, 156, 140, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1120px;
  --border: rgba(0, 0, 0, 0.08);
  --glow-1: rgba(0, 156, 140, 0.16);
  --glow-2: rgba(0, 0, 0, 0.05);
  --glow-3: rgba(0, 156, 140, 0.08);
  --hero-halo: rgba(0, 156, 140, 0.24);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 800px at 80% -10%, var(--glow-1) 0%, transparent 60%),
    radial-gradient(900px 700px at 0% 20%, var(--glow-2) 0%, transparent 60%),
    repeating-linear-gradient(90deg,
      var(--glow-3) 0,
      var(--glow-3) 1px,
      transparent 1px,
      transparent 6px),
    var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page {
  overflow-x: hidden;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(0, 0, 0, 0.08);
  z-index: 20;
}

.progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #000000);
  transition: width 0.15s ease;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 24px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 44px;
  align-items: center;
  position: relative;
}

.hero.hub {
  padding-top: 88px;
}

.hero.hub .hero-side {
  gap: 20px;
}

.hero.hub .hero-visual {
  padding: 0;
  min-height: 280px;
  aspect-ratio: 3 / 2;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

.hero.hub .hero-visual::after {
  background: linear-gradient(140deg, rgba(0, 0, 0, 0.18), transparent 65%);
  opacity: 0.35;
}

.hero.hub .hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--img-pos, 55% 55%);
  filter: saturate(0.96) contrast(1.05);
}

.hero.hub .hero-card {
  margin-top: -18px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--hero-halo) 0%, transparent 65%);
  top: -120px;
  left: -120px;
  z-index: -1;
}

.hero-side {
  display: grid;
  gap: 24px;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 0;
  background: linear-gradient(135deg, rgba(0, 156, 140, 0.12), rgba(0, 0, 0, 0.04));
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  min-height: 220px;
  display: grid;
  align-items: center;
  aspect-ratio: 3 / 2;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(0, 156, 140, 0.22), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 1;
  object-fit: cover;
  object-position: var(--img-pos, center 55%);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
}

.accent {
  color: var(--accent);
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 3.9vw, 4.2rem);
  margin: 0 0 18px;
  line-height: 1.05;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  min-height: 48px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 20px rgba(0, 156, 140, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 32px rgba(0, 156, 140, 0.35);
}

.cta.secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-metrics {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.metric {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.metric strong {
  display: block;
  font-size: 1.4rem;
  font-family: "Fraunces", serif;
}

.metric span {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  display: inline-block;
}

.hero-card {
  background: linear-gradient(var(--paper), var(--paper)) padding-box,
    linear-gradient(135deg, rgba(0, 156, 140, 0.6), rgba(0, 0, 0, 0.6)) border-box;
  border: 1px solid transparent;
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(0, 156, 140, 0.12);
  top: -40px;
  right: -20px;
}

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: "Fraunces", serif;
  font-size: 2.2rem;
  margin: 12px 0;
}

.price-tag span {
  font-size: 1rem;
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
}

.mini-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.mini-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  display: inline-block;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 24px;
}

.section-contrast {
  background: linear-gradient(180deg, rgba(0, 156, 140, 0.06), rgba(0, 0, 0, 0.02));
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.08);
  padding: 80px 32px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.section-header h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0;
}

.section-header p {
  color: var(--muted);
  margin: 0;
  max-width: 640px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--paper);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.panel {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 32px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.1);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.about-photo {
  margin: 0;
  display: grid;
  gap: 12px;
}

.about-photo img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.about-caption {
  font-size: 0.9rem;
  color: var(--muted);
}

.about-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.about-card h3 {
  margin-top: 0;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
}

.timeline {
  display: grid;
  gap: 18px;
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 9px;
  width: 1px;
  background: rgba(0, 0, 0, 0.2);
}

.timeline-item {
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  display: grid;
  gap: 6px;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  left: -28px;
  top: 24px;
  box-shadow: 0 0 0 4px rgba(0, 156, 140, 0.18);
}

.timeline-item strong {
  font-size: 0.95rem;
}

.breath {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: center;
}

.breath-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 156, 140, 0.3), rgba(0, 0, 0, 0.08));
  display: grid;
  place-items: center;
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  animation: breathe 19s ease-in-out infinite;
  margin: 0 auto;
}

.breath-circle span {
  background: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.breath-steps {
  display: grid;
  gap: 12px;
}

.breath-steps strong {
  display: block;
}

.highlight {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  gap: 18px;
}

.highlight h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 2rem;
}

.highlight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.highlight .cta {
  background: #fff;
  color: var(--ink);
  width: fit-content;
}

.ratings {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2fr;
  gap: 24px;
  align-items: stretch;
}

.rating-summary {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 10px;
}

.rating-score {
  font-size: 3rem;
  font-family: "Fraunces", serif;
}

.stars {
  color: var(--accent);
  letter-spacing: 0.16em;
  font-size: 1rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.review-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--border);
}

.review-card strong {
  display: block;
  margin-bottom: 8px;
}

.review-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.testimonial-quote {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 12px;
}

.testimonial-quote blockquote {
  margin: 0;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
}

.testimonial-meta {
  margin: 0;
  color: var(--muted);
}

.testimonial-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 8px;
}

.testimonial-card strong {
  display: block;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.workshop-stack {
  display: grid;
  gap: 28px;
}

.workshop-row {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 0.45fr);
  gap: 32px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.1);
  align-items: center;
}

.workshop-row.reverse {
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
}

.workshop-row.reverse .workshop-visual {
  order: 2;
}

.workshop-visual {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 3 / 2;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.workshop-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--img-pos, center 55%);
}

.workshop-content {
  display: grid;
  gap: 12px;
}

.workshop-points {
  margin: 6px 0 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.workshop-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 24px;
  display: grid;
  gap: 14px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.workshop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.12);
}

.workshop-media {
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 0;
  background: #fff;
  min-height: 160px;
  aspect-ratio: 3 / 2;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.workshop-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--img-pos, center 55%);
}

.workshop-card h3 {
  margin: 0;
}

.workshop-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.workshop-price {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
}

.workshop-card .cta {
  justify-self: start;
}

.mobile-only {
  display: none;
}

.tablet-only {
  display: grid;
}

.desktop-only {
  display: none;
}

.mobile-scroll-wrap {
  position: relative;
}

.mobile-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 6px 2px 16px;
  scroll-snap-type: x mandatory;
  scroll-padding: 16px;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mobile-scroll::-webkit-scrollbar {
  height: 0;
}

.mobile-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 999px;
}

.mobile-card {
  flex: 0 0 min(320px, 84vw);
  max-width: 88vw;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  display: grid;
}

.mobile-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: var(--img-pos, center 55%);
}

.mobile-card-body {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.mobile-card-body h3 {
  margin: 0;
}

.mobile-scroll-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--muted);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.mobile-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 12px 0 20px;
}

.mobile-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}

.mobile-dots span.active {
  background: var(--accent);
  transform: scale(1.2);
}

.mobile-cta {
  margin-top: 24px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0, 156, 140, 0.14), rgba(0, 0, 0, 0.08));
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 14px;
  width: 100%;
}

.mobile-cta h3 {
  margin: 0;
  font-size: 1.4rem;
  font-family: "Fraunces", serif;
}

.mobile-cta p {
  margin: 0;
  color: var(--muted);
}

.mobile-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mobile-metrics span {
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.9rem;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.signature-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.signature-card h3 {
  margin-top: 0;
}

.signature-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.path-card {
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 8px;
}

.path-card span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.match-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.match-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 20px;
  display: grid;
  gap: 10px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.match-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.12);
}

.match-card h3 {
  margin: 0;
}

.match-card p {
  margin: 0;
  color: var(--muted);
}

.match-link {
  color: var(--accent);
  font-weight: 600;
}

/* Próximas Fechas Section */
.section-fechas {
  background: linear-gradient(180deg, rgba(0, 156, 140, 0.08), rgba(0, 0, 0, 0.02));
  border-radius: 32px;
  border: 1px solid rgba(0, 156, 140, 0.15);
  box-shadow: 0 24px 52px rgba(0, 156, 140, 0.1);
  padding: 64px 32px;
}

.fechas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.fecha-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 24px;
  display: grid;
  gap: 14px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.fecha-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}

.fecha-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(0, 156, 140, 0.15);
}

.fecha-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.fecha-date {
  display: grid;
  gap: 2px;
}

.fecha-day {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--accent);
}

.fecha-month {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.fecha-time {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

.fecha-taller {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.fecha-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.fecha-plazas {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fecha-plazas::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.fecha-card .cta {
  margin-top: 4px;
}

.fechas-empty {
  text-align: center;
  color: var(--muted);
  padding: 32px;
  font-size: 1rem;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

/* Hamburger Menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 11;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.faq {
  display: grid;
  gap: 16px;
}

details {
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  padding: 16px 18px;
}

summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--accent);
}

details[open] summary::after {
  content: "-";
}

details p {
  color: var(--muted);
  margin: 12px 0 0;
}

.footer {
  padding: 40px 24px 64px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero h1,
.hero p,
.hero-actions,
.hero-visual,
.hero-card,
.hero-metrics,
.hero-list {
  animation: fadeUp 0.9s ease forwards;
}

.hero p {
  animation-delay: 0.1s;
}

.hero-actions {
  animation-delay: 0.2s;
}

.hero-card {
  animation-delay: 0.15s;
}

.hero-metrics {
  animation-delay: 0.25s;
}

.hero-list {
  animation-delay: 0.3s;
}

.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 15;
}

.sticky-cta span {
  font-size: 0.9rem;
  color: var(--muted);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes breathe {
  0% {
    transform: scale(0.88);
  }

  21% {
    transform: scale(1.05);
  }

  58% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(0.88);
  }
}

@media (max-width: 960px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 80px;
    grid-template-columns: 1fr;
  }

  .hero-actions {
    width: 100%;
  }

  .cta,
  .cta.secondary {
    width: 100%;
  }

  .highlight {
    padding: 28px;
  }

  .ratings {
    grid-template-columns: 1fr;
  }

  .testimonial-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 90px;
  }

  .nav-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    order: 1;
  }

  .logo {
    order: 0;
    font-size: 0.9rem;
  }

  .nav-links {
    display: none;
    width: 100%;
    order: 3;
    flex-direction: column;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    margin-top: 12px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    order: 2;
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .sticky-cta {
    display: flex;
  }

  .section-contrast,
  .section-fechas {
    padding: 48px 18px;
    border-radius: 24px;
  }

  .fechas-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 6px 2px 16px;
    scroll-snap-type: x mandatory;
    scroll-padding: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .fechas-grid::-webkit-scrollbar {
    height: 0;
  }

  .fecha-card {
    flex: 0 0 min(280px, 85vw);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .mobile-only {
    display: grid;
    gap: 20px;
    width: 100%;
  }

  .mobile-only>* {
    min-width: 0;
  }

  .tablet-only,
  .desktop-only {
    display: none;
  }

  .hero-visual,
  .workshop-media,
  .workshop-visual {
    aspect-ratio: 3 / 2;
  }

  .hero-visual img,
  .workshop-media img,
  .mobile-card img {
    object-position: var(--img-pos-mobile, var(--img-pos, center));
  }

  .hero.hub .hero-visual img {
    object-position: var(--img-pos-mobile, var(--img-pos, 55% 55%));
  }
}

@media (min-width: 960px) {
  .desktop-only {
    display: block;
  }

  .tablet-only {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Waitlist Card */
.waitlist-card {
  background: linear-gradient(135deg, rgba(0, 156, 140, 0.08), rgba(0, 0, 0, 0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
}

.waitlist-icon {
  font-size: 2.5rem;
}

.waitlist-card h3 {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  margin: 0;
}

.waitlist-card p {
  color: var(--muted);
  margin: 0;
  max-width: 360px;
}

.waitlist-card .cta {
  margin-top: 8px;
}

/* MailerLite popup buttons need pointer cursor */
.ml-onclick-form {
  cursor: pointer;
}