﻿/* ─── TOKENS ─────────────────────────────────────────────── */
    :root {
      --sage:      #A8BFAF;
      --sage-light:#c2d1c7;
      --sage-dark: #8aaa93;
      --sage-deep: #5e7a66;
      --off-white: #F8F8F6;
      --pebble:    #ede9e4;
      --charcoal:  #545454;
      --stone:     #6b6560;
      --forest:    #3d5247;
      --white:     #FFFFFE;
      --serif: 'Cormorant Garamond', Georgia, serif;
      --sans:  'DM Sans', sans-serif;
    }

    /* ─── RESET ──────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--sans);
      background: var(--off-white);
      color: var(--charcoal);
      overflow-x: hidden;
    }

    /* ─── CUSTOM CURSOR ──────────────────────────────────────── */
    .cursor {
      position: fixed; top: 0; left: 0; z-index: 9999;
      pointer-events: none;
    }
    .cursor-dot {
      width: 6px; height: 6px;
      background: var(--sage-dark);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: transform .1s ease;
    }
    .cursor-ring {
      width: 32px; height: 32px;
      border: 1px solid var(--sage);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: transform .25s ease, width .3s ease, height .3s ease, opacity .3s ease;
    }
    body:hover .cursor-ring { opacity: 1; }

    /* ─── NAV ─────────────────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; justify-content: space-between; align-items: center;
      padding: 28px 60px;
      transition: background .4s ease, padding .4s ease;
    }
    nav.scrolled {
      background: rgba(248,248,246,.92);
      backdrop-filter: blur(12px);
      padding: 18px 60px;
      border-bottom: 1px solid rgba(168,191,175,.3);
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 2.4rem;
      font-weight: 300;
      letter-spacing: .12em;
      color: var(--white);
      text-decoration: none;
      text-transform: uppercase;
      transition: color .4s ease;
    }
    nav.scrolled .nav-logo { color: var(--charcoal); }
    .nav-links {
      display: flex; gap: 40px; list-style: none;
    }
    .nav-links a {
      font-family: var(--sans);
      font-size: .72rem;
      font-weight: 400;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgba(255,255,254,.75);
      text-decoration: none;
      transition: color .3s;
    }
    nav.scrolled .nav-links a { color: var(--charcoal); }
    .nav-links a:hover { color: var(--white); }
    nav.scrolled .nav-links a:hover { color: var(--sage-dark); }

    .nav-cta {
      font-family: var(--sans);
      font-size: .72rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--white);
      border: 1px solid rgba(255,255,254,.45);
      padding: 9px 22px;
      text-decoration: none;
      transition: background .3s, color .3s, border-color .3s;
    }
    .nav-cta:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }
    nav.scrolled .nav-cta {
      color: var(--charcoal);
      border-color: var(--charcoal);
    }
    nav.scrolled .nav-cta:hover { background: var(--sage); border-color: var(--sage); color: var(--white); }

    /* ─── HERO ────────────────────────────────────────────────── */
    .hero {
      height: 100vh; min-height: 700px;
      position: relative;
      background: var(--sage);
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: var(--sage);
    }
    .hero-bg::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(160deg, rgba(30,30,30,.6) 0%, rgba(30,30,30,.25) 55%, rgba(84,84,84,.15) 100%);
      z-index: 1;
    }
    /* subtle grain overlay */
    .hero-bg::after {
      content: '';
      position: absolute; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
      opacity: .35;
    }
    /* large decorative circle */
    .hero-circle {
      position: absolute; z-index: 2;
      width: 70vw; height: 70vw;
      max-width: 820px; max-height: 820px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,254,.15);
      top: 50%; left: 58%;
      transform: translate(-50%, -50%);
      animation: slowSpin 60s linear infinite;
    }
    .hero-circle-2 {
      position: absolute;
      width: 45vw; height: 45vw;
      max-width: 540px; max-height: 540px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,254,.1);
      top: 50%; left: 62%;
      transform: translate(-50%, -50%);
      animation: slowSpin 40s linear infinite reverse;
    }
    @keyframes slowSpin {
      from { transform: translate(-50%, -50%) rotate(0deg); }
      to   { transform: translate(-50%, -50%) rotate(360deg); }
    }

    .hero-content {
      position: absolute;
      bottom: 80px; left: 0;
      z-index: 3;
      padding: 0 60px;
      max-width: min(860px, 68vw);
    }
    .hero-eyebrow {
      font-family: var(--sans);
      font-size: .68rem;
      font-weight: 400;
      letter-spacing: .35em;
      text-transform: uppercase;
      color: rgba(255,255,254,.7);
      margin-bottom: 20px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp .9s .3s forwards;
    }
    .hero-title {
      font-family: var(--serif);
      font-size: clamp(3rem, 5.5vw, 5rem);
      font-weight: 300;
      line-height: .95;
      color: var(--white);
      letter-spacing: -.01em;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 1s .5s forwards;
    }
    .hero-title em {
      font-style: italic;
      font-weight: 300;
      color: rgba(255,255,254,.75);
    }
    .hero-sub {
      font-family: var(--sans);
      font-size: .82rem;
      font-weight: 300;
      letter-spacing: .04em;
      line-height: 1.5;
      color: rgba(255,255,254,.75);
      margin-top: 18px;
      max-width: 360px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp .9s .75s forwards;
    }
    .hero-actions {
      display: flex; gap: 20px; align-items: center;
      margin-top: 44px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp .9s 1s forwards;
    }
    .btn-primary {
      font-family: var(--sans);
      font-size: .72rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      background: var(--white);
      color: var(--charcoal);
      padding: 14px 34px;
      text-decoration: none;
      transition: background .3s, color .3s;
    }
    .btn-primary:hover { background: var(--forest); color: var(--white); }
    .btn-ghost {
      font-family: var(--sans);
      font-size: .72rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(255,255,254,.8);
      text-decoration: none;
      display: flex; align-items: center; gap: 10px;
      transition: color .3s;
    }
    .btn-ghost::after {
      content: '';
      display: inline-block;
      width: 32px; height: 1px;
      background: currentColor;
      transition: width .3s;
    }
    .btn-ghost:hover { color: var(--white); }
    .btn-ghost:hover::after { width: 50px; }

    /* scroll indicator */
    .hero-scroll {
      position: absolute; bottom: 38px; right: 60px; z-index: 3;
      display: flex; flex-direction: column; align-items: center; gap: 10px;
      opacity: 0; animation: fadeIn 1s 1.5s forwards;
    }
    .hero-scroll span {
      font-size: .6rem; letter-spacing: .3em; text-transform: uppercase;
      color: rgba(255,255,254,.5);
      writing-mode: vertical-rl;
    }
    .scroll-line {
      width: 1px; height: 48px;
      background: rgba(255,255,254,.25);
      overflow: hidden;
    }
    .scroll-line::after {
      content: '';
      display: block; width: 100%; height: 100%;
      background: rgba(255,255,254,.7);
      transform: translateY(-100%);
      animation: scrollDown 2s 2s ease-in-out infinite;
    }
    @keyframes scrollDown {
      0% { transform: translateY(-100%); }
      100% { transform: translateY(100%); }
    }

    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      to { opacity: 1; }
    }

    /* ─── INTRO STRIP ─────────────────────────────────────────── */
    .intro-strip {
      background: var(--off-white);
      border-top: 1px solid rgba(84,84,84,.1);
      border-bottom: 1px solid rgba(84,84,84,.1);
      padding: 22px 60px;
      display: flex; justify-content: center; align-items: center; gap: 48px;
      flex-wrap: wrap;
    }
    .intro-strip-item {
      font-family: var(--sans);
      font-size: .67rem;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--charcoal);
      opacity: .7;
    }
    .intro-strip-dot {
      width: 3px; height: 3px;
      border-radius: 50%;
      background: var(--sage-dark);
      opacity: .5;
    }

    /* ─── SECTION SHARED ─────────────────────────────────────── */
    section { padding: 110px 60px; }
    .section-label {
      font-family: var(--sans);
      font-size: .64rem;
      letter-spacing: .35em;
      text-transform: uppercase;
      color: var(--sage-dark);
      margin-bottom: 20px;
    }
    .section-title {
      font-family: var(--serif);
      font-size: clamp(2.4rem, 5vw, 4.2rem);
      font-weight: 300;
      line-height: 1.05;
      color: var(--charcoal);
    }
    .section-title em {
      font-style: italic;
      color: var(--sage-dark);
    }

    /* ─── ABOUT / MANIFESTO ──────────────────────────────────── */
    .about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      max-width: 1200px; margin: 0 auto;
    }
    .about-text .section-title { margin-bottom: 32px; }
    .about-body {
      font-size: .93rem;
      line-height: 1.9;
      color: var(--charcoal);
      opacity: .75;
      margin-bottom: 18px;
    }
    .about-quote {
      font-family: var(--serif);
      font-size: 1.5rem;
      font-weight: 300;
      font-style: italic;
      line-height: 1.4;
      color: var(--charcoal);
      border-left: 2px solid var(--sage);
      padding-left: 24px;
      margin: 36px 0;
    }
    .about-visual {
      position: relative;
      height: 560px;
    }
    .about-card {
      position: absolute;
      background: var(--sage);
      border-radius: 2px;
    }
    .about-card-main {
      inset: 0;
      background: linear-gradient(150deg, var(--sage-light) 0%, var(--sage) 100%);
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .about-card-main .big-letter {
      font-family: var(--serif);
      font-size: 18rem;
      font-weight: 300;
      color: rgba(255,255,254,.18);
      line-height: 1;
      user-select: none;
    }
    .about-card-float {
      width: min(540px, calc(100% + 28px));
      bottom: -28px; left: -28px;
      background: var(--forest);
      padding: 30px 28px;
      display: flex; flex-direction: column; justify-content: center;
    }
    .about-card-float .float-quote {
      font-family: var(--serif);
      font-size: 1.2rem;
      font-style: italic;
      font-weight: 300;
      color: var(--white);
      line-height: 1.55;
      text-align: center;
    }

    /* ─── PILLAR STRIP ────────────────────────────────────────── */
    .pillars {
      background: #f0efed;
      padding: 80px 60px;
    }
    .pillars-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
    }
    .pillar {
      padding: 44px 0;
      border-top: 1px solid rgba(84,84,84,.12);
    }
    .pillar-num {
      font-family: var(--serif);
      font-size: 3.5rem;
      font-weight: 300;
      color: var(--sage-dark);
      line-height: 1;
      margin-bottom: 20px;
    }
    .pillar-title {
      font-family: var(--serif);
      font-size: 1.3rem;
      font-weight: 300;
      color: var(--charcoal);
      margin-bottom: 14px;
      line-height: 1.2;
    }
    .pillar-body {
      font-size: .8rem;
      line-height: 1.75;
      color: var(--charcoal);
      opacity: .65;
    }

    /* ─── CLASES ──────────────────────────────────────────────── */
    .clases-section {
      max-width: 1200px; margin: 0 auto;
    }
    .clases-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-bottom: 60px;
    }
    .clases-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
    .clase-card {
      position: relative;
      height: 480px;
      overflow: hidden;
      background: var(--sage);
    }
    .clase-bg {
      position: absolute; inset: 0;
      transition: transform .6s ease;
    }
    .clase-card:hover .clase-bg { transform: scale(1.04); }
    .clase-bg-1 { background: linear-gradient(160deg, #8aaa93 0%, #6e9478 100%); }
    .clase-bg-2 { background: linear-gradient(160deg, #9db4a2 0%, #A8BFAF 100%); }
    .clase-bg-3 { background: linear-gradient(160deg, #b5c8bc 0%, #8aaa93 100%); }

    .clase-pattern {
      position: absolute; inset: 0; opacity: .07;
      background-image: repeating-linear-gradient(
        45deg,
        #fff 0, #fff 1px,
        transparent 0, transparent 50%
      );
      background-size: 24px 24px;
    }
    .clase-content {
      position: absolute; inset: 0;
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 36px;
      background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.25) 55%, transparent 100%);
      transition: background .4s;
    }
    .clase-card:hover .clase-content {
      background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.35) 60%, transparent 100%);
    }
    .clase-tag {
      font-size: .6rem; letter-spacing: .3em; text-transform: uppercase;
      color: rgba(255,255,254,.9);
      margin-bottom: 10px;
    }
    .clase-name {
      font-family: var(--serif);
      font-size: 2rem; font-weight: 300;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 12px;
    }
    .clase-desc {
      font-size: .8rem; line-height: 1.65;
      color: rgba(255,255,254,.85);
      max-width: 260px;
      opacity: 0;
      transform: translateY(12px);
      transition: opacity .4s, transform .4s;
    }
    .clase-card:hover .clase-desc {
      opacity: 1; transform: translateY(0);
    }
    .clase-arrow {
      margin-top: 20px;
      width: 36px; height: 1px;
      background: rgba(255,255,254,.6);
      position: relative;
      opacity: 0; transition: opacity .4s, width .4s;
    }
    .clase-arrow::after {
      content: '';
      position: absolute; right: 0; top: -3px;
      border: 4px solid transparent;
      border-left: 7px solid rgba(255,255,254,.7);
    }
    .clase-card:hover .clase-arrow { opacity: 1; width: 52px; }

    /* ─── WELCOME / MÉTODO ────────────────────────────────────── */
    .metodo {
      background: #f0efed;
      overflow: hidden;
      position: relative;
      padding: 70px 60px;
    }
    .metodo-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
    }
    .metodo-visual {
      position: relative; height: 380px;
    }
    .metodo-rect-1 {
      position: absolute;
      top: 0; left: 0; right: 40px; bottom: 40px;
      background: rgba(168,191,175,.25);
    }
    .metodo-rect-2 {
      position: absolute;
      top: 40px; left: 40px; right: 0; bottom: 0;
      background: rgba(168,191,175,.15);
      display: flex; align-items: center; justify-content: center;
    }
    .metodo-big-text {
      font-family: var(--serif);
      font-size: 5.5rem; font-weight: 300;
      color: rgba(84,84,84,.1);
      line-height: 1;
    }
    .metodo-text .section-label { color: var(--sage-deep); }
    .metodo-text .section-title { color: var(--charcoal); margin-bottom: 28px; }
    .metodo-steps { list-style: none; margin-top: 32px; }
    .metodo-step {
      display: flex; gap: 20px;
      padding: 20px 0;
      border-bottom: 1px solid rgba(84,84,84,.12);
    }
    .metodo-step:first-child { border-top: 1px solid rgba(84,84,84,.12); }
    .step-num {
      font-family: var(--serif);
      font-size: 1rem; font-weight: 300;
      color: var(--sage-dark);
      width: 28px; flex-shrink: 0;
      padding-top: 2px;
    }
    .step-body .step-title {
      font-family: var(--serif);
      font-size: 1.1rem; font-weight: 300;
      color: var(--charcoal);
      margin-bottom: 4px;
    }
    .step-body .step-text {
      font-size: .8rem; line-height: 1.65;
      color: var(--charcoal);
      opacity: .6;
    }

    /* ─── PRECIOS ─────────────────────────────────────────────── */
    .precios-section {
      max-width: 1100px; margin: 0 auto;
    }
    .precios-header { margin-bottom: 60px; }
    .precios-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
    .precio-card {
      padding: 52px 40px;
      background: var(--white);
      position: relative;
      transition: transform .3s;
    }
    .precio-card:hover { transform: translateY(-6px); }
    .precio-card.featured {
      background: var(--sage-deep);
    }
    .precio-badge {
      position: absolute; top: 24px; right: 24px;
      font-size: .58rem; letter-spacing: .28em; text-transform: uppercase;
      background: var(--sage);
      color: var(--white);
      padding: 5px 12px;
    }
    .precio-type {
      font-size: .62rem; letter-spacing: .3em; text-transform: uppercase;
      color: var(--sage-dark);
      margin-bottom: 20px;
    }
    .precio-card.featured .precio-type { color: var(--sage-light); }
    .precio-name {
      font-family: var(--serif);
      font-size: 1.8rem; font-weight: 300;
      color: var(--charcoal);
      margin-bottom: 28px;
      line-height: 1.1;
    }
    .precio-card.featured .precio-name { color: var(--white); }
    .precio-amount {
      font-family: var(--serif);
      font-size: 3.2rem; font-weight: 300;
      color: var(--charcoal);
      line-height: 1;
      margin-bottom: 6px;
    }
    .precio-card.featured .precio-amount { color: var(--white); }
    .precio-period {
      font-size: .7rem; letter-spacing: .15em;
      color: var(--charcoal); opacity: .4;
      margin-bottom: 36px;
    }
    .precio-card.featured .precio-period { color: rgba(255,255,254,.4); opacity: 1; }
    .precio-features { list-style: none; margin-bottom: 40px; }
    .precio-features li {
      font-size: .82rem; line-height: 1.7;
      color: var(--charcoal); opacity: .6;
      padding: 8px 0;
      border-bottom: 1px solid rgba(0,0,0,.06);
      display: flex; align-items: center; gap: 10px;
    }
    .precio-card.featured .precio-features li {
      color: rgba(255,255,254,.65); opacity: 1;
      border-bottom-color: rgba(255,255,254,.08);
    }
    .precio-features li::before {
      content: '';
      width: 16px; height: 1px;
      background: var(--sage);
      flex-shrink: 0;
    }
    .btn-precio {
      display: block; text-align: center;
      font-family: var(--sans);
      font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
      padding: 14px;
      text-decoration: none;
      transition: .3s;
    }
    .btn-precio-outline {
      border: 1px solid var(--charcoal);
      color: var(--charcoal);
    }
    .btn-precio-outline:hover { background: var(--forest); color: var(--white); }
    .btn-precio-solid {
      background: var(--sage);
      color: var(--white);
    }
    .btn-precio-solid:hover { background: var(--sage-dark); }

    /* ─── TESTIMONIALS ────────────────────────────────────────── */
    .testimonials {
      background: var(--off-white);
      padding: 110px 60px;
    }
    .testimonials-inner {
      max-width: 1200px; margin: 0 auto;
    }
    .testimonials-header { margin-bottom: 60px; }
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .testi-card {
      padding: 44px 36px;
      background: var(--white);
      position: relative;
    }
    .testi-quote-mark {
      font-family: var(--serif);
      font-size: 5rem; line-height: .6;
      color: var(--sage-light);
      margin-bottom: 16px;
    }
    .testi-text {
      font-family: var(--serif);
      font-size: 1.05rem; font-weight: 300; font-style: italic;
      line-height: 1.65;
      color: var(--charcoal);
      margin-bottom: 28px;
    }
    .testi-name {
      font-size: .68rem; letter-spacing: .25em; text-transform: uppercase;
      color: var(--sage-dark);
    }

    /* ─── HORARIOS ────────────────────────────────────────────── */
    .horarios {
      background: var(--forest);
      padding: 70px 60px;
    }
    .horarios-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 60px;
    }
    .horarios-left .section-label { color: var(--sage-light); opacity: .65; }
    .horarios-left .section-title { color: var(--white); margin-bottom: 24px; }
    .horarios .section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
    .horarios-left .section-body {
      font-size: .85rem; line-height: 1.8; color: rgba(255,255,254,.5);
      margin-bottom: 32px;
    }
    .table-horarios {
      width: 100%; border-collapse: collapse;
    }
    .table-horarios th {
      font-size: .62rem; letter-spacing: .28em; text-transform: uppercase;
      color: rgba(255,255,254,.55);
      text-align: left; padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,254,.15);
    }
    .table-horarios td {
      font-size: .85rem;
      color: rgba(255,255,254,.82);
      padding: 16px 0;
      border-bottom: 1px solid rgba(255,255,254,.12);
    }
    .table-horarios td:first-child {
      font-family: var(--serif);
      font-size: 1rem; font-weight: 300;
      color: var(--white);
      font-weight: 400;
    }
    .horario-tipo {
      display: inline-block;
      font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
      padding: 3px 10px;
      background: rgba(168,191,175,.2);
      color: var(--sage-light);
    }
    .horario-tipo.individual { background: rgba(255,255,254,.08); color: rgba(255,255,254,.5); }

    /* ─── FAQ ─────────────────────────────────────────────────── */
    .faq-section {
      max-width: 820px; margin: 0 auto;
    }
    .faq-header { margin-bottom: 52px; }
    .faq-item {
      border-bottom: 1px solid rgba(84,84,84,.15);
      overflow: hidden;
    }
    .faq-question {
      display: flex; justify-content: space-between; align-items: center;
      padding: 24px 0;
      cursor: pointer;
      font-family: var(--serif);
      font-size: 1.1rem; font-weight: 300;
      color: var(--charcoal);
      user-select: none;
    }
    .faq-icon {
      width: 24px; height: 24px;
      border: 1px solid rgba(84,84,84,.25);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-size: .9rem;
      color: var(--sage-dark);
      transition: transform .35s, background .35s;
    }
    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      background: var(--sage);
      color: var(--white);
      border-color: var(--sage);
    }
    .faq-answer {
      max-height: 0; overflow: hidden;
      transition: max-height .4s ease, padding .3s ease;
    }
    .faq-item.open .faq-answer {
      max-height: 300px; padding-bottom: 24px;
    }
    .faq-answer p {
      font-size: .87rem; line-height: 1.85;
      color: var(--charcoal); opacity: .6;
    }

    /* ─── CTA FINAL ───────────────────────────────────────────── */
    .cta-final {
      background: var(--sage);
      text-align: center;
      padding: 130px 60px;
      position: relative; overflow: hidden;
    }
    .cta-final-bg {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 30% 60%, rgba(255,255,254,.12) 0%, transparent 60%);
    }
    .cta-final-eyebrow {
      font-size: .65rem; letter-spacing: .35em; text-transform: uppercase;
      color: rgba(255,255,254,.6);
      margin-bottom: 22px;
    }
    .cta-final-title {
      font-family: var(--serif);
      font-size: clamp(2.8rem, 6vw, 5.5rem);
      font-weight: 300; line-height: 1.05;
      color: var(--white);
      margin-bottom: 32px;
    }
    .cta-final-title em { font-style: italic; color: rgba(255,255,254,.7); }
    .cta-final-sub {
      font-size: .88rem; line-height: 1.75;
      color: rgba(255,255,254,.65);
      max-width: 700px; margin: 0 auto 44px;
    }
    .cta-btns {
      display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
    }
    .btn-cta-white {
      font-family: var(--sans);
      font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
      background: var(--white);
      color: var(--charcoal);
      padding: 16px 40px;
      text-decoration: none;
      transition: .3s;
    }
    .btn-cta-white:hover { background: var(--forest); color: var(--white); }
    .btn-cta-outline-white {
      font-family: var(--sans);
      font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
      border: 1px solid rgba(255,255,254,.5);
      color: rgba(255,255,254,.8);
      padding: 16px 40px;
      text-decoration: none;
      transition: .3s;
    }
    .btn-cta-outline-white:hover { background: rgba(255,255,254,.15); color: var(--white); border-color: var(--white); }

    /* ─── FOOTER ─────────────────────────────────────────────── */
    footer {
      background: var(--stone);
      padding: 70px 60px 36px;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      padding-bottom: 60px;
      border-bottom: 1px solid rgba(255,255,254,.08);
      margin-bottom: 36px;
    }
    .footer-brand .brand-name {
      font-family: var(--serif);
      font-size: 1.6rem; font-weight: 300;
      letter-spacing: .14em; text-transform: uppercase;
      color: var(--white);
      margin-bottom: 14px;
    }
    .footer-brand p {
      font-size: .8rem; line-height: 1.75;
      color: rgba(255,255,254,.35);
      max-width: 260px;
    }
    .footer-col h4 {
      font-size: .6rem; letter-spacing: .3em; text-transform: uppercase;
      color: rgba(255,255,254,.3);
      margin-bottom: 20px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a {
      font-size: .82rem; color: rgba(255,255,254,.5);
      text-decoration: none;
      transition: color .3s;
    }
    .footer-col ul li a:hover { color: var(--sage-light); }
    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
    }
    .footer-copy {
      font-size: .68rem; letter-spacing: .1em;
      color: rgba(255,255,254,.2);
    }
    .footer-social {
      display: flex; gap: 20px;
    }
    .footer-social a {
      font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
      color: rgba(255,255,254,.3);
      text-decoration: none;
      transition: color .3s;
    }
    .footer-social a:hover { color: var(--sage-light); }


    /* ─── GALLERY STRIP ──────────────────────────────────────── */
    .gallery-strip {
      background: var(--off-white);
      padding: 110px 60px;
    }
    .gallery-strip-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 80px;
      align-items: center;
    }
    .gallery-photos {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      height: 520px;
      min-height: 320px;
    }
    .gallery-photo {
      overflow: hidden;
      position: relative;
    }
    .gallery-photo img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform .6s ease;
    }
    .gallery-photo:hover img { transform: scale(1.04); }
    .gallery-photo-tall { grid-row: span 1; }
    .gallery-photo-short { grid-row: span 1; align-self: end; height: 80%; }
    @media (max-width: 900px) {
      .gallery-strip { padding: 80px 28px; }
      .gallery-strip-inner { grid-template-columns: 1fr; gap: 40px; }
      .gallery-photos { height: 360px; }
    }

    /* ─── CONTACTO ───────────────────────────────────────────── */
    .contacto-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      min-height: 520px;
    }
    .contacto-info {
      padding: 80px 60px;
      background: var(--white);
      display: flex; flex-direction: column; justify-content: center;
    }
    .contacto-item {
      display: flex; gap: 20px; align-items: flex-start;
      padding: 22px 0;
      border-bottom: 1px solid rgba(84,84,84,.08);
    }
    .contacto-item:last-child { border-bottom: none; }
    .contacto-icon {
      width: 40px; height: 40px;
      background: var(--off-white);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      color: var(--sage-dark);
      margin-top: 2px;
    }
    .contacto-label {
      font-size: .6rem; letter-spacing: .28em; text-transform: uppercase;
      color: var(--sage-dark);
      margin-bottom: 5px;
    }
    .contacto-value {
      font-family: var(--serif);
      font-size: 1.05rem; font-weight: 300;
      color: var(--charcoal);
      line-height: 1.4;
    }
    .contacto-link {
      text-decoration: none;
      transition: color .3s;
    }
    .contacto-link:hover { color: var(--sage-dark); }
    .contacto-mapa {
      position: relative;
      min-height: 480px;
    }
    .contacto-mapa iframe {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
    }
    @media (max-width: 900px) {
      .contacto-grid { grid-template-columns: 1fr; }
      .contacto-info { padding: 60px 28px; }
      .contacto-mapa { min-height: 320px; }
      .intro-strip { padding: 20px 28px; gap: 24px; }
    }

    /* ─── REVEAL ANIMATIONS ──────────────────────────────────── */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }

    /* ─── RESPONSIVE ─────────────────────────────────────────── */
    /* ─── TABLET (max 1024px) ──────────────────────────────────────── */
    @media (max-width: 1024px) {
      .about { gap: 50px; }
      .clases-grid { grid-template-columns: 1fr 1fr; }
      .clase-card { height: 420px; }
      .precios-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
      .testi-grid { grid-template-columns: 1fr 1fr; }
      .horarios-inner { gap: 50px; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
      .footer-brand { grid-column: 1 / -1; }
      .gallery-strip-inner { gap: 50px; }
    }

    /* ─── MOBILE (max 768px) ────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .hero-title { font-size: clamp(2.8rem, 5.5vw, 4.5rem); }
    }

    @media (max-width: 768px) {
      body { cursor: auto; }
      .cursor { display: none; }

      nav { padding: 18px 24px; }
      nav.scrolled { padding: 14px 24px; }
      .nav-links { display: none; }
      .nav-logo-img { height: 28px; }

      section { padding: 70px 24px; }
      .pillars { padding: 60px 24px; }
      .testimonials { padding: 70px 24px; }
      .horarios { padding: 70px 24px; }
      .cta-final { padding: 90px 24px; }
      footer { padding: 60px 24px 30px; }

      .hero { min-height: 100svh; padding-top: 0; }
      .hero-content { bottom: 60px; padding: 0 24px; }
      .hero-title { font-size: clamp(2rem, 8.5vw, 3.2rem); line-height: 1.05; }
      .hero-scroll { display: none; }
      .hero-sub em { font-size: 1.1em !important; }
      .hero-sub { font-size: .82rem; }
      .hero-ctas { flex-direction: column; align-items: flex-start; gap: 12px; }
      .hero-circle, .hero-circle-2 { display: none; }

      .intro-strip { padding: 18px 24px; gap: 18px; flex-wrap: wrap; justify-content: center; }
      .intro-strip-item { font-size: .6rem; }

      .about { grid-template-columns: 1fr; gap: 40px; }
      .about-visual { height: 320px; }
      .about-card-float { width: 300px; left: -16px; bottom: -16px; padding: 22px; }
      .about-card-float .float-quote { font-size: 1rem; }
      .about-quote { font-size: 1.2rem; }

      .pillars-inner { grid-template-columns: 1fr; gap: 0; }
      .pillar { padding: 28px 0; }

      .clases-grid { grid-template-columns: 1fr; gap: 2px; }
      .clase-card { height: auto; min-height: 400px; }
      .clase-content { position: relative; min-height: 400px; justify-content: flex-end; }
      .clase-desc { opacity: 1; transform: translateY(0); }
      .clase-arrow { opacity: 1; width: 36px; }

      .metodo-inner { grid-template-columns: 1fr; gap: 40px; }
      .metodo-visual { display: none; }

      .gallery-strip { padding: 70px 24px; }
      .gallery-strip-inner { grid-template-columns: 1fr; gap: 36px; }
      .gallery-photos { height: 300px; }

      .precios-grid { grid-template-columns: 1fr; gap: 2px; max-width: 100%; }

      .testi-grid { grid-template-columns: 1fr; gap: 16px; }

      .horarios-inner { grid-template-columns: 1fr; gap: 40px; }
      table { font-size: .78rem; }

      .faq-section { max-width: 100%; }

      .cta-btns { flex-direction: column; align-items: center; }
      .btn-cta-white, .btn-cta-outline-white { width: 100%; max-width: 320px; text-align: center; }

      .contacto-grid { grid-template-columns: 1fr; }
      .contacto-info { padding: 50px 24px; }
      .contacto-mapa { min-height: 280px; }

      .footer-top { grid-template-columns: 1fr; gap: 32px; }
      .footer-brand { grid-column: 1; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    }


    /* ─── PLATFORM + BENEFITS RESPONSIVE ───────────────────────── */
    @media (max-width: 1024px) {
      .hero-title { font-size: clamp(2.8rem, 5.5vw, 4.5rem); }
    }

    @media (max-width: 768px) {
      .plataforma-grid { grid-template-columns: 1fr !important; gap: 48px !important; }
    }
    @media (max-width: 600px) {
      div[style*="grid-template-columns:repeat(3,1fr)"] {
        grid-template-columns: 1fr !important;
      }
    }
    /* ─── SMALL MOBILE (max 430px) ─────────────────────────────────── */
    @media (max-width: 430px) {
      .hero-title { font-size: clamp(1.8rem, 8vw, 2.4rem); line-height: 1.1; }
      nav { padding: 16px 20px; }
      section { padding: 60px 20px; }
      .pillars { padding: 50px 20px; }
      .testimonials, .horarios, .cta-final { padding: 60px 20px; }
      footer { padding: 50px 20px 28px; }
      .hero-content { bottom: 44px; padding: 0 20px; }
      .hero-title { font-size: clamp(2.6rem, 13vw, 4rem); }
      .intro-strip { padding: 16px 20px; gap: 14px; }
      .clases-header { flex-direction: column; align-items: flex-start; gap: 16px; }
      .horarios { padding: 60px 20px; }
      .contacto-info { padding: 40px 20px; }
      .gallery-photos { height: 240px; }
      .clase-card { height: 300px; }
      .about-visual { height: 280px; }
      .about-card-float { width: calc(100% + 16px); left: -12px; bottom: -12px; padding: 18px; }
      .about-card-float .float-quote { font-size: .88rem; }
      .table-horarios td, .table-horarios th { padding: 12px 0; font-size: .75rem; }
    }

/* ─── MOBILE PERFORMANCE ────────────────────────────────── */
/* Hide custom cursor entirely on touch/mobile */
@media (pointer: coarse) {
  .cursor { display: none !important; }
  body { cursor: auto !important; }
}

/* Reduce heavy animations on mobile */
@media (max-width: 768px) {
  .hero-circle, .hero-circle-2 { animation: none; }
}

/* Respect user's reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ─── MOBILE FIXES — INLINE GRID SECTIONS ───────────────── */
@media (max-width: 768px) {

  /* Seccion "Tu proceso" */
  .proceso-section {
    padding: 60px 20px !important;
  }
  .proceso-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* Seccion "Pack Bienvenida" */
  #bienvenida {
    padding: 60px 20px !important;
  }
  .bienvenida-main-grid {
    grid-template-columns: 1fr !important;
  }
  .bienvenida-packs-grid {
    grid-template-columns: 1fr !important;
  }

  /* Nav: ocultar links en mobile, mostrar solo CTA */
  .nav-links {
    display: none !important;
  }
  nav {
    padding: 20px 20px !important;
  }
  nav.scrolled {
    padding: 14px 20px !important;
  }
}

/* ─── COMO FUNCIONA — mobile ─────────────────────────────── */
@media (max-width: 768px) {
  .como-grid {
    grid-template-columns: 1fr !important;
  }
}
