/* ============================================
   THE RESET LAB — Estilos Rediseñados
   Paleta: verdes naturaleza + tonos tierra
   ============================================ */

/* ----- Importación de fuentes ----- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@,400;,500;,600;,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ----- Variables ----- */
:root {
  --green-dark: #2D4A3E;
  --green-primary: #5D8A72;
  --green-medium: #7BA88E;
  --green-light: #B5D4C3;
  --green-lighter: #E2F3E9;
  --green-bg: #FF7F3;

  --earth-dark: #6B5B4E;
  --earth-primary: #D4A574;
  --earth-light: #EEDCC8;
  --earth-lighter: #F7EFE5;

  --terracotta: #C4865A;

  --bg: #FBF9F6;
  --bg-alt: #F5F3E8;
  --bg-card: #FFFFFF;

  --text: #2D2422;
  --text-light: #6B5B55;
  --text-lighter: #A89C99;
  --text-on-primary: #FFFFFF;

  --border: #E8EDE8;
  --shadow: rgba(45, 42, 38, .07);
  --shadow-hover: rgba(45, 42, 38, .14);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --transition: .3s cubic-bezier(.25, .46, .45, .94);
  --transition-slow: .5s cubic-bezier(.25, .46, .45, .94);

  --container: 120px;
  --container-narrow: 880px;
}

/* ----- Reset ----- */
*, *::before, *::after { margin:; padding:; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: var(--green-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ----- Utilidades ----- */
.container { width: 100%; max-width: var(--container); margin:  auto; padding:  24px; }
.container--narrow { max-width: var(--container-narrow); }
.sr-only { position: absolute; width: 1px; height: 1px; padding:; margin: -1px; overflow: hidden; clip: rect(,,,); border:; }
.section { padding: 100px ; }
.section__header { text-align: center; margin-bottom: 56px; }
.section__label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 12px;
}
.section__label::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--earth-primary);
  margin: 8px auto ;
}
.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section__sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  margin:  auto;
  line-height: 1.8;
}

/* ----- Botones ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: .85rem 2rem;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}
.btn--primary {
  background: var(--green-primary);
  color: var(--text-on-primary);
  box-shadow:  4px 15px rgba(93, 138, 114, .35);
}
.btn--primary:hover {
  background: var(--green-dark);
  color: var(--text-on-primary);
  transform: translateY(-2px);
  box-shadow:  8px 25px rgba(93, 138, 114, .45);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--green-primary);
  color: var(--green-dark);
  background: var(--green-lighter);
  transform: translateY(-2px);
}
.btn--light {
  background: #fff;
  color: var(--green-dark);
  box-shadow:  4px 15px rgba(,,,.12);
}
.btn--light:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow:  8px 25px rgba(,,,.18);
}
.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
}
.btn--outline-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,.12);
  color: #fff;
  transform: translateY(-2px);
}
.btn--lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: ; left: ; width: 100%;
  z-index: 100;
  padding: 1rem ;
  transition: all var(--transition);
}
.header--scrolled {
  background: rgba(251,249,246,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:  1px 30px var(--shadow);
  padding: .5rem ;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin:  auto;
  padding:  24px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.header__logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff;
  transition: transform var(--transition);
}
.header__logo:hover .header__logo-icon { transform: rotate(-8deg) scale(1.05); }
.header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -.5px;
}
.header__right { display: flex; align-items: center; gap: 24px; }
.header__nav { display: flex; align-items: center; gap: 20px; }
.header__link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px ;
}
.header__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: ;
  width: ; height: 2px;
  background: var(--green-primary);
  transition: width var(--transition);
  border-radius: 2px;
}
.header__link:hover::after { width: 100%; }
.header__link:hover { color: var(--green-dark); }

.header__btn-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--green-primary);
  background: transparent;
  color: var(--green-dark);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.header__btn-login:hover {
  background: var(--green-primary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow:  4px 12px rgba(93,138,114,.25);
}

/* Hamburguesa */
.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.header__toggle--active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__toggle--active span:nth-child(2) { opacity: ; transform: scaleX(); }
.header__toggle--active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Menú móvil */
.header__mobile {
  position: fixed;
  top: ; right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--bg-card);
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 48px 32px;
  box-shadow: -10px  40px rgba(,,,.08);
  transition: right var(--transition-slow);
  z-index: 999;
}
.header__mobile--open { right: ; }
.header__mobile-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
}
.header__mobile-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--green-primary);
  background: var(--green-primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  justify-content: center;
  margin-top: 12px;
}
.header__overlay {
  position: fixed;
  inset: ;
  background: rgba(,,,.3);
  z-index: 998;
  opacity: ;
  pointer-events: none;
  transition: opacity var(--transition);
}
.header__overlay--visible { opacity: 1; pointer-events: auto; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--green-lighter) %, var(--bg) 40%, var(--bg-alt) 100%);
}
.hero__bg { position: absolute; inset: ; pointer-events: none; overflow: hidden; }
.hero__bg-shape {
  position: absolute;
  border-radius: 50%;
}
.hero__bg-shape--1 {
  top: -25%; right: -12%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(181,212,195,.4) %, transparent 70%);
  animation: heroFloat 8s ease-in-out infinite;
}
.hero__bg-shape--2 {
  bottom: -20%; left: -8%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(213,165,116,.18) %, transparent 70%);
  animation: heroFloat 10s ease-in-out infinite reverse;
}
.hero__bg-shape--3 {
  top: 40%; left: 50%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(196,134,90,.1) %, transparent 70%);
  animation: heroFloat 12s ease-in-out infinite;
}
@keyframes heroFloat {
  %, 100% { transform: translate(, ) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}
.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--container);
  margin:  auto;
  padding:  24px;
}
.hero__content { animation: fadeUp .8s ease forwards; }
.hero__badge {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-primary);
  background: var(--green-lighter);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}
.hero__title-accent {
  color: var(--green-primary);
  font-style: italic;
  position: relative;
}
.hero__title-accent::after {
  content: '';
  position: absolute;
  bottom: 4px; left: ;
  width: 100%; height: 8px;
  background: rgba(181,212,195,.35);
  border-radius: 4px;
  z-index: -1;
}
.hero__desc {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero__stat { display: flex; flex-direction: column; }
.hero__stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1;
}
.hero__stat-label {
  font-size: .85rem;
  color: var(--text-lighter);
  margin-top: 4px;
}

/* Hero Visual */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 1s ease .2s forwards;
  opacity: ;
}
.hero__card {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, var(--green-primary), var(--green-dark));
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
     20px 80px rgba(93,138,114,.25),
     4px 20px rgba(,,,.05);
}
.hero__card::before {
  content: '';
  position: absolute;
  inset: ;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.15) %, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.1) %, transparent 40%);
  z-index: 1;
}
.hero__card-inner {
  position: relative;
  z-index: 2;
  padding: 40px 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.hero__card-icon { font-size: 3rem; margin-bottom: 20px; opacity: .9; }
.hero__card-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.hero__card-text {
  font-size: 1rem;
  opacity: .85;
  line-height: 1.7;
  max-width: 340px;
}

/* Elementos flotantes */
.hero__float {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:  8px 30px rgba(,,,.06);
  animation: floatItem 6s ease-in-out infinite;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.hero__float--1 { width: 64px; height: 64px; top: -18px; right: -14px; animation-delay: s; font-size: 1.6rem; }
.hero__float--2 { width: 48px; height: 48px; bottom: 28px; left: -22px; animation-delay: 2s; font-size: 1.2rem; }
.hero__float--3 { width: 40px; height: 40px; top: 38%; right: -28px; animation-delay: 4s; font-size: 1rem; }

@keyframes floatItem {
  %, 100% { transform: translateY(); }
  50% { transform: translateY(-14px); }
}
@keyframes fadeUp {
  from { opacity: ; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(); }
}

/* ============================================
   TALLERES — Grid de catálogo
   ============================================ */
.talleres { background: var(--bg-alt); }
.talleres__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}
.taller-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:  4px 20px var(--shadow);
  transition: all var(--transition-slow);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(213,165,116,.08);
}
.taller-card:hover {
  transform: translateY(-8px);
  box-shadow:  12px 40px var(--shadow-hover);
  border-color: rgba(93,138,114,.15);
}
.taller-card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.taller-card__img::after {
  content: '';
  position: absolute;
  inset: ;
  opacity: .12;
  transition: opacity var(--transition);
}
.taller-card:hover .taller-card__img::after { opacity: .2; }
.taller-card__emoji {
  font-size: 3.2rem;
  z-index: 2;
  transition: transform var(--transition-slow);
}
.taller-card:hover .taller-card__emoji { transform: scale(1.15) rotate(-5deg); }

.taller-card__img--costura { background: linear-gradient(135deg, #E2F3E9, #B5D4C3); }
.taller-card__img--costura::after { background: var(--green-primary); }
.taller-card__img--pintura { background: linear-gradient(135deg, #F7EFE5, #EEDCC8); }
.taller-card__img--pintura::after { background: var(--earth-primary); }
.taller-card__img--ceramica { background: linear-gradient(135deg, #F5E6DB, #E2C9B2); }
.taller-card__img--ceramica::after { background: var(--terracotta); }
.taller-card__img--manualidades { background: linear-gradient(135deg, #E4ECF2, #C4D4E6); }
.taller-card__img--manualidades::after { background: #8FA8C4; }

.taller-card__body {
  padding: 24px 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.taller-card__tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 8px;
}
.taller-card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.25;
}
.taller-card__desc {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}
.taller-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.taller-card__price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-dark);
}
.taller-card__price small {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 400;
  color: var(--text-lighter);
}
.taller-card__cta {
  font-size: .9rem;
  font-weight: 500;
  color: var(--green-primary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.taller-card__cta:hover { gap: 12px; color: var(--green-dark); }

/* ============================================
   BENEFICIOS
   ============================================ */
.beneficios { background: var(--bg); }
.beneficios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.beneficio-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  border: 1px solid var(--border);
  transition: all var(--transition-slow);
}
.beneficio-card:hover {
  transform: translateY(-6px);
  box-shadow:  12px 40px var(--shadow-hover);
  border-color: rgba(93,138,114,.2);
}
.beneficio-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: transform var(--transition);
}
.beneficio-card:hover .beneficio-card__icon { transform: scale(1.08); }
.beneficio-card__icon--calendario { background: var(--green-lighter); color: var(--green-primary); }
.beneficio-card__icon--geo { background: var(--earth-lighter); color: var(--earth-primary); }
.beneficio-card__icon--pagos { background: #FEDE6; color: var(--terracotta); }

.beneficio-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.beneficio-card__desc {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 18px;
}
.beneficio-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.beneficio-card__list li {
  font-size: .85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.beneficio-card__list li i {
  color: var(--green-primary);
  font-size: .75rem;
  flex-shrink: ;
}

/* ============================================
   SUSCRIPCIÓN — CTA
   ============================================ */
.suscripcion {
  background: linear-gradient(145deg, var(--green-dark), var(--green-primary));
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.suscripcion::before {
  content: '';
  position: absolute;
  inset: ;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.08) %, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,.05) %, transparent 50%);
  pointer-events: none;
}
.suscripcion__content { position: relative; z-index: 2; }
.suscripcion__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 600;
  margin-bottom: 16px;
}
.suscripcion__text {
  font-size: 1.1rem;
  opacity: .9;
  max-width: 560px;
  margin:  auto 36px;
  line-height: 1.8;
}
.suscripcion__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.85);
  padding: 60px  32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}
.footer__logo-icon {
  width: 32px; height: 32px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark); font-size: .85rem;
}
.footer__desc {
  font-size: .9rem;
  opacity: .7;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 320px;
}
.footer__social { display: flex; gap: 12px; }
.footer__social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: all var(--transition);
}
.footer__social-link:hover { background: var(--green-medium); color: #fff; transform: translateY(-3px); }
.footer__heading {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links li a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: all var(--transition);
}
.footer__links li a:hover { color: #fff; padding-left: 4px; }
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.footer__copy {
  font-size: .85rem;
  opacity: .5;
}

/* ============================================
   ANIMACIONES
   ============================================ */
.reveal {
  opacity: ;
  transform: translateY(30px);
  transition: all .7s cubic-bezier(.25, .46, .45, .94);
}
.reveal--visible { opacity: 1; transform: translateY(); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero__content { order: 2; }
  .hero__visual { order: 1; }
  .hero__desc { margin:  auto 36px; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__card { max-width: 380px; margin:  auto; }
  .hero__card-text { margin:  auto; }
  .beneficios__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 70px ; }
  .section__title { font-size: 1.8rem; }
  .header__nav { display: none; }
  .header__btn-login { display: none; }
  .header__toggle { display: flex; }
  .header__mobile { display: flex; }
  .hero { min-height: auto; padding: 110px  40px; }
  .hero__title { font-size: 2.2rem; }
  .hero__desc { font-size: 1rem; }
  .hero__stats { flex-direction: column; gap: 16px; align-items: center; }
  .hero__stat-num { font-size: 1.5rem; }
  .hero__float { display: none; }
  .talleres__grid { grid-template-columns: 1fr; max-width: 400px; margin:  auto; }
  .beneficios__grid { grid-template-columns: 1fr; max-width: 420px; margin:  auto; }
  .suscripcion__actions { flex-direction: column; align-items: center; }
  .suscripcion__actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__desc { margin:  auto 20px; }
  .footer__social { justify-content: center; }
  .footer__links { align-items: center; }
}
@media (max-width: 480px) {
  .container { padding:  16px; }
  .hero__title { font-size: 1.8rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .taller-card__body { padding: 20px 18px 16px; }
  .beneficio-card { padding: 28px 20px 24px; }
}

/* Pequeña corrección para móvil */
@media (min-width: 769px) {
  .header__mobile { display: none !important; }
  .header__overlay { display: none !important; }
}
