    /* ─── RESET & VARS HIGH-TICKET ─── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    :root {
      /* ── PALETA: ABISMO MEDITERRÁNEO — SECCIONES ALTERNAS ── */

      /* Fondos claros: entre crema cálida y blanco puro */
      --sand: #FAF7F2;
      /* crema cálida suave — secciones impares claras */
      --sand2: #F2EDE4;
      /* crema más densa — hover, cards */
      --white: #FFFFFF;
      /* blanco puro — secciones pares claras */

      /* Fondos oscuros: navy suavizado, nunca negro */
      --navy: #0E2030;
      /* navy medio — antes era #060B11, ahora +luz */
      --navy2: #162C40;
      /* navy algo más claro — antes #0C1622 */
      --navy3: #1E3A50;
      /* navy más suave — capas de profundidad */

      /* Acentos: Abismo Mediterráneo */
      --gold: #C9A84C;
      /* dorado ámbar cálido */
      --gold2: #F0E0B0;
      /* dorado pálido — textos sobre oscuro */
      --teal: #1A6B7A;
      /* teal profundo */
      --teal2: #2FBFBF;
      /* teal brillante — glow, highlights */

      /* Gradientes de sección — alternando claro/oscuro con 3 colores visibles */

      /* OSCUROS: viaje de #060B11 → #0E2030, nunca plano */
      --g-hero: linear-gradient(160deg, #060B11 0%, #0A1828 50%, #0E2030 100%);
      --g-db: linear-gradient(180deg, #0E2030 0%, #081420 50%, #060B11 100%);
      --g-metodo: radial-gradient(ellipse at 80% 20%, #0E2030 0%, #07111C 50%, #060B11 100%);
      --g-proc: linear-gradient(155deg, #060B11 0%, #0B1C2C 45%, #0E2030 100%);
      --g-rev: linear-gradient(145deg, #0E2030 0%, #091520 55%, #060B11 100%);
      --g-foot: linear-gradient(150deg, #040810 0%, #060B11 50%, #0A1828 100%);

      /* CLAROS: crema cálida ↔ blanco puro con toque, nunca plano */
      --g-bv: linear-gradient(145deg, #FAF7F2 0%, #FFFFFF 50%, #F5F0E8 100%);
      --g-hab: linear-gradient(155deg, #FFFFFF 0%, #F7F3EC 45%, #FAF7F2 100%);
      --g-ins: linear-gradient(140deg, #F5F0E8 0%, #FDFCFA 50%, #FFFFFF 100%);
      --g-faq: linear-gradient(160deg, #F2EDE4 0%, #FAF7F2 50%, #FFFFFF 100%);

      /* Glassmorphism & Tokens */
      --glass-l: rgba(255, 255, 255, 0.88);
      --glass-d: rgba(14, 32, 48, 0.72);
      --glass-border-l: rgba(255, 255, 255, 0.45);
      --glass-border-d: rgba(255, 255, 255, 0.09);
      --b-light: rgba(255, 255, 255, 1);
      --b-dark: rgba(14, 32, 48, 1);
      --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.06);
      --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.20);
      --shadow-glow: 0 0 30px rgba(201, 168, 76, 0.18);

      /* Typography */
      --fd: 'Manrope', sans-serif;
      --fs: 'Cormorant Garamond', serif;
      --fb: 'Outfit', sans-serif;
      --r: 12px;

      /* Fluid Spacing */
      --sp-sm: clamp(1rem, 2vw, 1.5rem);
      --sp-md: clamp(2rem, 4vw, 3rem);
      --sp-lg: clamp(4rem, 8vw, 7rem);
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: var(--fb);
      background: var(--navy);
      color: var(--sand);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased
    }

    /* ── Secciones claras: forzar texto oscuro ── */
    #bv,
    #hab,
    #ins,
    #faq {
      color: var(--navy);
    }

    body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 998;
      opacity: .025;
      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='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      mix-blend-mode: overlay
    }

    .dbar {
      position: fixed;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      z-index: 200;
      background: linear-gradient(to bottom, var(--gold), var(--teal2), var(--gold2))
    }

    nav {
      position: fixed;
      top: 0;
      left: 4px;
      right: 0;
      z-index: 150;
      height: 72px;
      padding: 0 clamp(20px, 4vw, 48px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      box-shadow: var(--shadow-sm)
    }

    .nl {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none
    }

    .nw strong {
      font-family: var(--fd);
      font-weight: 800;
      font-size: 1.15rem;
      /* Aumentado de 0.9rem */
      letter-spacing: 0.12em;
      color: var(--navy);
      text-transform: uppercase;
      display: block;
      transition: letter-spacing 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nl:hover .nw strong {
      letter-spacing: 0.35em;
      /* Efecto de estirado */
      transform: translateX(4px);
    }

    .nw span {
      font-family: var(--fb);
      font-weight: 400;
      font-size: 0.55rem;
      letter-spacing: 0.3em;
      color: var(--gold);
      text-transform: uppercase;
      display: block;
      margin-top: 2px;
      transition: letter-spacing 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nl:hover .nw span {
      letter-spacing: 0.55em;
      transform: translateX(4px);
    }

    .ey span {
      font-family: var(--fd);
      font-weight: 800;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: inline-block;
    }

    .nlinks {
      display: flex;
      align-items: center;
      gap: 32px
    }

    .nlinks a {
      font-family: var(--fb);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      color: var(--navy2);
      text-decoration: none;
      text-transform: uppercase;
      transition: color 0.3s
    }

    .nlinks a:hover {
      color: var(--gold)
    }

    .ncta {
      padding: 10px 24px;
      background: var(--navy);
      color: var(--sand) !important;
      font-weight: 700 !important;
      border-radius: var(--r);
      transition: all 0.3s !important;
      box-shadow: var(--shadow-sm);
      border: 1px solid transparent
    }

    .ncta:hover {
      background: var(--navy2);
      transform: translateY(-2px);
      border-color: var(--gold);
      box-shadow: var(--shadow-glow)
    }

    .ham {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px
    }

    .ham span {
      display: block;
      width: 28px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: all 0.3s
    }

    .ham.o span:nth-child(1) {
      transform: translateY(8px) rotate(45deg)
    }

    .ham.o span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0)
    }

    .ham.o span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg)
    }

    .nmob {
      display: none;
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      z-index: 149;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      padding: 24px;
      flex-direction: column
    }

    .nmob.o {
      display: flex;
      animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1)
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-10px)
      }

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

    .nmob a {
      font-family: var(--fb);
      font-size: 0.9rem;
      color: var(--navy);
      text-decoration: none;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 14px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      transition: color 0.2s
    }

    .nmob a:hover {
      color: var(--gold);
    }

    .nmob-section {
      display: flex;
      flex-direction: column;
    }

    .nmob-label {
      font-family: var(--fb);
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      padding: 14px 0 8px;
    }

    .nmob-divider {
      height: 1px;
      background: rgba(0, 0, 0, 0.07);
      margin: 8px 0;
    }

    .nmob-cta {
      margin-top: 12px;
      background: var(--navy) !important;
      color: var(--sand) !important;
      padding: 16px !important;
      text-align: center;
      font-weight: 700 !important;
      border-radius: var(--r);
      border-bottom: none !important;
      justify-content: center;
      display: block;
    }

    #hero {
      min-height: 100svh;
      background: var(--g-hero);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 120px 0 80px
    }

    .hmesh {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(ellipse at 15% 25%, rgba(47, 191, 191, 0.10) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 65%, rgba(201, 168, 76, 0.09) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 100%, rgba(14, 32, 48, 0.6) 0%, transparent 55%)
    }

    .hinner {
      position: relative;
      z-index: 5;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--sp-md);
      width: 100%
    }

    .hey {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 24px
    }

    .hey::before {
      content: '';
      width: 40px;
      height: 1px;
      background: linear-gradient(to right, var(--gold), var(--gold2));
      flex-shrink: 0
    }

    .hey span {
      font-family: var(--fb);
      font-weight: 600;
      font-size: 0.7rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold2)
    }

    h1 {
      font-family: var(--fd);
      font-weight: 800;
      font-size: clamp(2.5rem, 6vw, 5.5rem);
      color: var(--white);
      line-height: 1.05;
      margin-bottom: 24px;
      max-width: 900px;
      letter-spacing: -0.02em
    }

    h1 em,
    .text-gradient {
      font-style: normal;
      background: linear-gradient(90deg, var(--teal2), var(--gold2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
      display: inline-block;
    }

    .hsub {
      font-family: var(--fb);
      font-weight: 300;
      font-size: clamp(1rem, 1.5vw, 1.2rem);
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.7);
      max-width: 600px;
      margin-bottom: 48px
    }

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

    .bp {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 18px 36px;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      color: var(--navy);
      font-family: var(--fb);
      font-weight: 800;
      font-size: 0.8rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: var(--r);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: var(--shadow-glow)
    }

    .bp:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3)
    }

    .bs {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 36px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: rgba(255, 255, 255, 0.9);
      font-family: var(--fb);
      font-weight: 600;
      font-size: 0.8rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: var(--r);
      transition: all 0.3s;
      backdrop-filter: blur(10px)
    }

    .bs:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: var(--gold2);
      color: var(--gold2)
    }

    .bub {
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.6
    }

    .b {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.1);
      animation: rise linear infinite
    }

    .b:nth-child(1) {
      width: 4px;
      height: 4px;
      left: 15%;
      bottom: -10px;
      animation-duration: 12s
    }

    .b:nth-child(2) {
      width: 6px;
      height: 6px;
      left: 35%;
      bottom: -10px;
      animation-duration: 15s;
      animation-delay: 2s
    }

    .b:nth-child(3) {
      width: 3px;
      height: 3px;
      left: 55%;
      bottom: -10px;
      animation-duration: 10s;
      animation-delay: 5s
    }

    .b:nth-child(4) {
      width: 7px;
      height: 7px;
      left: 75%;
      bottom: -10px;
      animation-duration: 18s;
      animation-delay: 1s
    }

    @keyframes rise {
      0% {
        transform: translateY(0);
        opacity: 0
      }

      10% {
        opacity: 0.6
      }

      90% {
        opacity: 0.1
      }

      100% {
        transform: translateY(-110vh) translateX(20px);
        opacity: 0
      }
    }

    .hrays {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }

    .hrays::before {
      content: '';
      position: absolute;
      top: -15%;
      left: 50%;
      transform: translateX(-50%);
      width: 130%;
      height: 85vh;
      background: conic-gradient(from -22deg at 50% 0%,
          transparent 0deg, rgba(43, 170, 170, .04) 4deg, transparent 8deg,
          transparent 20deg, rgba(200, 149, 74, .03) 24deg, transparent 28deg,
          transparent 38deg, rgba(43, 170, 170, .05) 42deg, transparent 46deg);
      animation: rays 15s ease-in-out infinite alternate
    }

    @keyframes rays {
      from {
        opacity: .4;
        transform: translateX(-50%) rotate(-3deg)
      }

      to {
        opacity: .8;
        transform: translateX(-50%) rotate(3deg)
      }
    }

    #db {
      background: var(--g-db);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05)
    }

    .dbg {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--sp-md);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-left: 1px solid rgba(255, 255, 255, 0.05)
    }

    .dbc {
      padding: 40px 20px;
      border-right: 1px solid rgba(255, 255, 255, 0.05);
      text-align: center;
      transition: background 0.3s
    }

    .dbc:hover {
      background: rgba(255, 255, 255, 0.02)
    }

    .dbv {
      font-family: var(--fd);
      font-weight: 800;
      font-size: clamp(2rem, 3vw, 2.5rem);
      line-height: 1;
      margin-bottom: 12px;
      background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.7));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    .dbl {
      font-family: var(--fb);
      font-weight: 600;
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4)
    }

    .dbf {
      max-width: 1200px;
      margin: 0 auto;
      padding: 16px var(--sp-md);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center
    }

    .pill {
      padding: 6px 16px;
      border-radius: 30px;
      font-family: var(--fb);
      font-weight: 800;
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      color: var(--navy);
      box-shadow: var(--shadow-glow)
    }

    .dbf span {
      font-family: var(--fb);
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.5)
    }

    .si {
      max-width: 1200px;
      margin: 0 auto;
      padding: var(--sp-lg) var(--sp-md)
    }

    .ey {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px
    }

    .ey::before {
      content: '';
      width: 30px;
      height: 1px;
      flex-shrink: 0;
      background: linear-gradient(to right, var(--gold), var(--teal2))
    }

    .ey.d::before {
      background: linear-gradient(to right, var(--gold2), var(--teal2))
    }

    .ey span {
      font-family: var(--fb);
      font-weight: 700;
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase
    }

    .ey.l span {
      color: var(--navy)
    }

    .ey.d span {
      color: var(--gold2)
    }

    .sh {
      font-family: var(--fd);
      font-weight: 800;
      font-size: clamp(2rem, 4vw, 3.5rem);
      line-height: 1.1;
      margin-bottom: 32px;
      letter-spacing: -0.02em
    }

    .sh.l {
      color: var(--navy)
    }

    .sh.l em {
      font-style: normal;
      background: linear-gradient(90deg, var(--teal), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    .sh.d {
      color: var(--white)
    }

    .sh.d em {
      font-style: normal;
      background: linear-gradient(90deg, var(--teal2), var(--gold2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    .bt {
      font-family: var(--fb);
      font-weight: 300;
      font-size: clamp(1rem, 1.2vw, 1.1rem);
      line-height: 1.9
    }

    .bt.l {
      color: rgba(6, 11, 17, 0.7)
    }

    .bt.d {
      color: rgba(255, 255, 255, 0.7)
    }

    p+p {
      margin-top: 20px
    }

    #bv {
      background: var(--g-bv);
      color: var(--navy)
    }

    .bvg {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--sp-lg);
      align-items: start
    }

    .bvi {
      display: flex;
      flex-direction: column;
      gap: 16px
    }

    .bvcard {
      padding: 32px;
      background: var(--glass-l);
      backdrop-filter: blur(20px);
      border: 1px solid var(--glass-border-l);
      border-radius: var(--r);
      box-shadow: var(--shadow-sm);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden
    }

    .bvcard::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(to bottom, var(--gold), var(--teal));
      opacity: 0.5;
      transition: opacity 0.3s
    }

    .bvcard:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg)
    }

    .bvcard:hover::before {
      opacity: 1
    }

    .bvcard h4 {
      font-family: var(--fd);
      font-weight: 800;
      font-size: 1.1rem;
      color: var(--navy);
      margin-bottom: 12px;
      letter-spacing: 0.02em
    }

    .bvcard p {
      font-family: var(--fb);
      font-weight: 400;
      font-size: 0.95rem;
      line-height: 1.7;
      color: rgba(6, 11, 17, 0.7)
    }

    #met {
      background: var(--g-metodo)
    }

    .mtrack {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding: 20px 0 var(--sp-lg)
    }

    .mtrack::-webkit-scrollbar {
      display: none
    }

    .mcards {
      display: flex;
      gap: 20px;
      padding: 0 var(--sp-md);
      min-width: max-content;
      margin: 0 auto;
      width: fit-content
    }

    .mc {
      flex: 0 0 320px;
      padding: 48px 40px;
      backdrop-filter: blur(20px);
      border: 1px solid var(--glass-border-d);
      border-top: 3px solid transparent;
      border-radius: var(--r);
      position: relative;
      transition: all 0.4s;
      box-shadow: var(--shadow-lg);
      overflow: hidden
    }

    /* Línea superior en TODAS las cajas — gradiente propio por posición */
    .mc:nth-child(1) {
      background: linear-gradient(160deg, rgba(26, 107, 122, 0.25) 0%, rgba(14, 32, 48, 0.65) 60%, rgba(6, 11, 17, 0.7) 100%);
      border-top-color: var(--teal2)
    }

    .mc:nth-child(2) {
      background: linear-gradient(160deg, rgba(6, 11, 17, 0.6) 0%, rgba(14, 32, 48, 0.65) 50%, rgba(47, 191, 191, 0.15) 100%);
      border-top-color: var(--teal)
    }

    .mc:nth-child(3) {
      background: linear-gradient(160deg, rgba(14, 32, 48, 0.65) 0%, rgba(6, 11, 17, 0.6) 50%, rgba(201, 168, 76, 0.15) 100%);
      border-top-color: var(--gold)
    }

    .mc:nth-child(4) {
      background: linear-gradient(160deg, rgba(6, 11, 17, 0.55) 0%, rgba(26, 107, 122, 0.18) 50%, rgba(14, 32, 48, 0.65) 100%);
      border-top-color: var(--gold2)
    }

    .mc:hover {
      transform: translateY(-8px);
      border-color: rgba(255, 255, 255, 0.15);
      filter: brightness(1.12)
    }

    .mcn {
      font-family: var(--fd);
      font-weight: 800;
      font-size: 4.5rem;
      line-height: 1;
      margin-bottom: 24px;
      color: transparent;
      -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
      transition: all 0.4s
    }

    .mc:hover .mcn {
      color: var(--white);
      -webkit-text-stroke: 0
    }

    .mc h3 {
      font-family: var(--fd);
      font-weight: 800;
      font-size: 1.2rem;
      color: var(--white);
      margin-bottom: 16px;
      letter-spacing: 0.02em
    }

    .mc p {
      font-family: var(--fb);
      font-weight: 300;
      font-size: 0.95rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.6)
    }

    #hab {
      background: var(--g-hab);
      color: var(--navy)
    }

    .hgrid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: var(--sp-md)
    }

    .hk {
      padding: 48px 40px;
      border-radius: var(--r);
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
      border: 1px solid transparent;
      transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden
    }

    /* Degradado propio por caja — progresión teal → mix → dorado */
    .hk:nth-child(1) {
      background: linear-gradient(145deg, #FFFFFF 0%, #F0FAF8 60%, #E8F6F4 100%);
      border-color: rgba(47, 191, 191, 0.15)
    }

    .hk:nth-child(2) {
      background: linear-gradient(145deg, #FDFCFA 0%, #F5F0E8 55%, #FAF7F2 100%);
      border-color: rgba(201, 168, 76, 0.12)
    }

    .hk:nth-child(3) {
      background: linear-gradient(145deg, #FFFFFF 0%, #FDF8EE 55%, #F8F2E0 100%);
      border-color: rgba(201, 168, 76, 0.18)
    }

    /* Mancha de color decorativa en esquina — sutil */
    .hk::before {
      content: '';
      position: absolute;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      pointer-events: none;
      opacity: 0.5;
      transition: opacity 0.4s
    }

    .hk:nth-child(1)::before {
      top: -60px;
      right: -60px;
      background: radial-gradient(ellipse, rgba(47, 191, 191, 0.12) 0%, transparent 70%)
    }

    .hk:nth-child(2)::before {
      bottom: -60px;
      right: -40px;
      background: radial-gradient(ellipse, rgba(201, 168, 76, 0.10) 0%, transparent 70%)
    }

    .hk:nth-child(3)::before {
      top: -40px;
      left: -60px;
      background: radial-gradient(ellipse, rgba(26, 107, 122, 0.09) 0%, transparent 70%)
    }

    .hk:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 56px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
      border-color: var(--gold);
    }

    /* Background image for skills boxes */
    .hk-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.3;
      /* Sutil toque de imagen por defecto */
      filter: blur(4px);
      /* Difuminado suave y profesional */
      transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      pointer-events: none;
    }

    .hk:hover .hk-bg {
      filter: blur(0) brightness(1.1);
      opacity: 1;
      transform: scale(1.1);
    }

    /* Ensure text visibility over potential images with a soft overlay */
    .hk::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(14, 32, 48, 0.7) 0%, transparent 60%);
      opacity: 0;
      z-index: 1;
      transition: opacity 0.5s ease;
      pointer-events: none;
    }

    .hk:hover::after {
      opacity: 1;
    }

    .hk:hover h3 {
      color: var(--white);
    }

    .hk:hover p {
      color: rgba(255, 255, 255, 0.9);
    }

    .hk:hover::before {
      opacity: 0.2;
      /* Reduce decorative spot when image is active */
    }

    /* Línea: progresión de color lógica por posición */
    .hkl {
      width: 40px;
      height: 3px;
      margin-bottom: 28px;
      border-radius: 3px
    }

    .hk:nth-child(1) .hkl {
      background: linear-gradient(to right, var(--teal2), var(--teal))
    }

    .hk:nth-child(2) .hkl {
      background: linear-gradient(to right, var(--teal), var(--gold))
    }

    .hk:nth-child(3) .hkl {
      background: linear-gradient(to right, var(--gold), var(--gold2))
    }

    .hk h3 {
      font-family: var(--fd);
      font-weight: 800;
      font-size: 1.1rem;
      color: var(--navy);
      margin-bottom: 16px;
      position: relative;
      z-index: 1
    }

    .hk p {
      font-family: var(--fb);
      font-weight: 400;
      font-size: 0.95rem;
      line-height: 1.8;
      color: rgba(14, 32, 48, 0.65);
      position: relative;
      z-index: 1
    }

    #proc {
      background: var(--g-proc)
    }

    .plist {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: var(--sp-md)
    }


    .pi {
      display: flex;
      gap: 32px;
      align-items: flex-start;
      padding: 32px 40px;
      background: var(--glass-d);
      backdrop-filter: blur(20px);
      border: 1px solid var(--glass-border-d);
      border-radius: var(--r);
      transition: all 0.3s
    }

    .pi:hover {
      background: rgba(20, 30, 45, 0.8);
      transform: translateX(8px);
      border-color: rgba(255, 255, 255, 0.15)
    }

    .pin {
      font-family: var(--fd);
      font-weight: 800;
      font-size: 1.8rem;
      line-height: 1;
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      border-radius: 50%;
      color: var(--navy);
      box-shadow: var(--shadow-glow)
    }

    .pi strong {
      display: block;
      font-family: var(--fd);
      font-weight: 800;
      font-size: 1.1rem;
      color: var(--white);
      margin-bottom: 8px
    }

    .pi span {
      font-family: var(--fb);
      font-size: 0.95rem;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.7
    }

    #ins {
      background: var(--g-ins)
    }

    .ig {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: var(--sp-lg);
      align-items: center
    }

    .iq {
      font-family: var(--fs);
      font-style: italic;
      font-weight: 400;
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      line-height: 1.4;
      color: var(--navy);
      margin-bottom: 32px;
      quotes: none
    }

    .iq::before {
      content: '“';
      font-size: 4rem;
      line-height: 0;
      vertical-align: -0.3em;
      margin-right: 8px;
      background: linear-gradient(135deg, var(--gold), var(--teal));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    .isig {
      font-family: var(--fb);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      background: linear-gradient(to right, var(--gold), var(--teal));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: inline-block
    }

    .iphoto {
      width: 100%;
      aspect-ratio: 1/1;
      background: radial-gradient(circle at center, transparent 0%, rgba(212, 175, 55, 0.3) 100%), url('img/instructor-buceo-buceaconrafa.jpg') center/cover no-repeat;
      border-radius: var(--r);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-lg)
    }

    .iphoto::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(212, 175, 55, 0.4) 100%);
      pointer-events: none;
    }

    .idb {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: -60px;
      position: relative;
      z-index: 10;
      padding: 0 24px
    }

    .idc {
      padding: 24px;
      background: var(--glass-l);
      backdrop-filter: blur(24px);
      border: 1px solid var(--glass-border-l);
      border-radius: var(--r);
      box-shadow: var(--shadow-sm)
    }

    .idc-lbl {
      font-family: var(--fb);
      font-weight: 800;
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      display: block;
      margin-bottom: 8px;
      background: linear-gradient(to right, var(--gold), var(--teal));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    .idc-val {
      font-family: var(--fd);
      font-weight: 800;
      font-size: 2rem;
      line-height: 1;
      margin-bottom: 8px;
      color: var(--navy)
    }

    .idc-desc {
      font-family: var(--fb);
      font-weight: 400;
      font-size: 0.8rem;
      line-height: 1.6;
      color: rgba(6, 11, 17, 0.6)
    }

    .idc.wide {
      grid-column: 1/-1
    }

    .idc.wide p {
      font-family: var(--fs);
      font-style: italic;
      font-size: 1.1rem;
      line-height: 1.6;
      color: var(--navy);
      text-align: center
    }

    #rev {
      background: var(--g-rev);
      overflow: hidden
    }

    .rslide {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 24px;
      margin-top: var(--sp-md);
      padding-bottom: 24px;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
      /* Scroll suave */
      scroll-behavior: smooth;
    }

    .rslide::-webkit-scrollbar {
      display: none;
    }

    .rslide.fade-out {
      opacity: 1;
      /* Eliminado el JS fade */
    }

    .rslide:active {
      cursor: grabbing
    }

    .rc {
      flex: 0 0 calc(33.333% - 16px);
      min-width: 300px;
      scroll-snap-align: center;
      padding: 40px;
      background: var(--glass-d);
      backdrop-filter: blur(20px);
      border: 1px solid var(--glass-border-d);
      border-radius: var(--r);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
    }

    .rc.show {
      opacity: 1;
      transform: translateY(0)
    }

    .rc::before {
      content: '';
      position: absolute;
      top: 0;
      left: 10%;
      right: 10%;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      opacity: 0.3
    }

    .rc:hover {
      transform: translateY(-8px);
      background: rgba(20, 30, 45, 0.8);
      border-color: rgba(255, 255, 255, 0.15)
    }

    .stars {
      display: flex;
      gap: 4px;
      margin-bottom: 24px
    }

    .stars i {
      width: 14px;
      height: 14px;
      display: block;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%)
    }

    .rt {
      font-family: var(--fs);
      font-style: italic;
      font-weight: 400;
      font-size: 1.1rem;
      line-height: 1.7;
      color: var(--white);
      margin-bottom: 32px
    }

    .ra {
      display: flex;
      align-items: center;
      gap: 16px
    }

    .rav {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      flex-shrink: 0;
      background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(47, 181, 181, 0.15));
      border: 1px solid rgba(212, 175, 55, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--fd);
      font-weight: 800;
      font-size: 0.9rem;
      color: var(--gold2)
    }

    .ra strong {
      display: block;
      font-family: var(--fb);
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--white)
    }

    .ra small {
      font-family: var(--fb);
      font-size: 0.75rem;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.4)
    }

    .rslide-wrapper {
      position: relative;
    }

    .rnav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--glass-l);
      backdrop-filter: blur(10px);
      border: 1px solid var(--glass-border-l);
      color: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .rnav:hover {
      background: var(--gold);
      color: var(--navy);
      transform: translateY(-50%) scale(1.1);
      box-shadow: var(--shadow-glow);
      border-color: transparent;
    }

    .rnav-prev {
      left: -24px;
    }

    .rnav-next {
      right: -24px;
    }

    .rdots {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 40px
    }

    .rdot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      background: rgba(255, 255, 255, 0.2);
      transition: all 0.3s
    }

    .rdot.a {
      background: var(--gold2);
      transform: scale(1.4)
    }

    #faq {
      background: var(--g-faq);
      color: var(--navy)
    }

    .fpg {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: var(--sp-lg);
      align-items: start;
      margin-top: var(--sp-md)
    }

    .fitem {
      border-bottom: 1px solid rgba(0, 0, 0, 0.06)
    }

    .fbtn {
      width: 100%;
      background: none;
      border: none;
      padding: 24px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      text-align: left;
      gap: 20px;
      font-family: var(--fb);
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--navy);
      transition: color 0.3s
    }

    .fbtn:hover {
      color: var(--teal)
    }

    .fico {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
      border: 1px solid rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: var(--gold);
      transition: all 0.3s;
      border-radius: 50%
    }

    .fitem.o .fico {
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      color: var(--navy);
      transform: rotate(45deg);
      border-color: transparent
    }

    .fans {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1)
    }

    .fitem.o .fans {
      max-height: 500px
    }

    .fansi {
      padding-bottom: 24px;
      font-family: var(--fb);
      font-size: 0.95rem;
      font-weight: 400;
      line-height: 1.8;
      color: rgba(6, 11, 17, 0.7)
    }

    .pbox {
      position: sticky;
      top: 100px;
      background: var(--white);
      border: 1px solid var(--glass-border-l);
      border-radius: var(--r);
      overflow: hidden;
      box-shadow: var(--shadow-lg)
    }

    .ptop {
      padding: 40px 32px;
      background: linear-gradient(140deg, var(--navy) 0%, var(--navy2) 100%);
      position: relative;
      overflow: hidden
    }

    .ptop::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(47, 181, 181, 0.1), transparent 60%);
      pointer-events: none
    }

    .plbl {
      font-family: var(--fb);
      font-weight: 800;
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold2);
      display: block;
      margin-bottom: 12px;
      position: relative;
      z-index: 2
    }

    .pamt {
      font-family: var(--fd);
      font-weight: 800;
      font-size: clamp(3rem, 4vw, 4rem);
      line-height: 1;
      display: block;
      margin-bottom: 8px;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      position: relative;
      z-index: 2;
      letter-spacing: -0.03em
    }

    .pinc {
      font-family: var(--fb);
      font-weight: 300;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.6;
      display: block;
      position: relative;
      z-index: 2
    }

    .plist2 {
      display: flex;
      flex-direction: column;
      padding: 24px 32px
    }

    .pli {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      font-family: var(--fb);
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--navy)
    }

    .pli:last-child {
      border-bottom: none
    }

    .pdot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--gold), var(--teal));
      box-shadow: var(--shadow-glow)
    }

    .nxtb {
      margin: 0 24px;
      padding: 24px;
      background: var(--sand);
      border-radius: var(--r);
      border: 1px solid var(--glass-border-l);
      border-left: 4px solid var(--teal)
    }

    .nxtl {
      font-family: var(--fb);
      font-weight: 800;
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      display: block;
      margin-bottom: 8px;
      background: linear-gradient(to right, var(--teal), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    .nxtb p {
      font-family: var(--fb);
      font-size: 0.9rem;
      font-weight: 400;
      line-height: 1.6;
      color: rgba(6, 11, 17, 0.7);
      margin-bottom: 12px
    }

    .nxta {
      font-family: var(--fb);
      font-size: 0.8rem;
      font-weight: 800;
      color: var(--navy);
      text-decoration: none;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      display: inline-block;
      transition: all 0.2s
    }

    .nxta:hover {
      color: var(--teal);
      transform: translateX(4px)
    }

    .wabtn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin: 24px 32px 16px;
      padding: 20px;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      color: var(--navy);
      font-family: var(--fb);
      font-weight: 800;
      font-size: 0.9rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: var(--r);
      transition: all 0.3s;
      box-shadow: var(--shadow-glow);
      position: relative;
      overflow: hidden
    }

    .wabtn::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transition: all 0.5s
    }

    .wabtn:hover {
      transform: translateY(-2px);
      box-shadow: 0 15px 40px rgba(212, 175, 55, 0.35)
    }

    .wabtn:hover::after {
      left: 100%
    }

    .wanote {
      font-family: var(--fb);
      font-size: 0.8rem;
      font-weight: 400;
      color: rgba(6, 11, 17, 0.5);
      text-align: center;
      padding: 0 32px 32px
    }

    footer {
      background: var(--g-foot)
    }

    .ft {
      max-width: 1200px;
      margin: 0 auto;
      padding: var(--sp-lg) var(--sp-md) var(--sp-md);
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: var(--sp-md);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05)
    }

    .fbn {
      font-family: var(--fd);
      font-weight: 800;
      font-size: 1.1rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--white)
    }

    .fbs {
      font-family: var(--fb);
      font-weight: 500;
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      display: block;
      margin: 8px 0 24px;
      background: linear-gradient(to right, var(--gold2), var(--teal2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    .fbd {
      font-family: var(--fb);
      font-weight: 300;
      font-size: 0.95rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.4);
      max-width: 300px
    }

    .fc h5 {
      font-family: var(--fb);
      font-weight: 800;
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      margin-bottom: 20px;
      color: var(--white)
    }

    .fc a {
      display: block;
      font-family: var(--fb);
      font-size: 0.9rem;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.4);
      text-decoration: none;
      margin-bottom: 12px;
      transition: color 0.2s
    }

    .fc a:hover {
      color: var(--gold2)
    }

    .fb2 {
      max-width: 1200px;
      margin: 0 auto;
      padding: 24px var(--sp-md);
      display: flex;
      justify-content: space-between;
      align-items: center
    }

    .fb2 p {
      font-family: var(--fb);
      font-size: 0.8rem;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.3)
    }

    .fbadge {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 16px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 30px
    }

    .fbadge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--teal));
      box-shadow: var(--shadow-glow)
    }

    .fbadge span {
      font-family: var(--fb);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.5)
    }

    .fi {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      animation-fill-mode: forwards
    }

    .fi.v {
      opacity: 1;
      transform: none
    }

    .d1 {
      transition-delay: 0.15s
    }

    .d2 {
      transition-delay: 0.3s
    }

    .d3 {
      transition-delay: 0.45s
    }

    @media(max-width:900px) {
      .nlinks {
        display: none
      }

      .ham {
        display: flex
      }

      .dbg {
        grid-template-columns: repeat(2, 1fr)
      }

      .bvg,
      .ig {
        grid-template-columns: 1fr
      }

      .idb {
        margin-top: -30px
      }

      .hgrid {
        grid-template-columns: 1fr
      }

      .fpg {
        grid-template-columns: 1fr
      }

      .pbox {
        position: static
      }

      .ft {
        grid-template-columns: 1fr 1fr
      }

      .fb2 {
        flex-direction: column;
        gap: 16px;
        text-align: center
      }

      .rslide {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 24px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
      }

      .rslide::-webkit-scrollbar {
        display: none;
      }

      .rslide .rc {
        flex: 0 0 calc(100% - 32px);
        max-width: 340px;
        scroll-snap-align: center;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        margin: 0 auto;
      }

      .rnav {
        display: none !important;
      }
    }

    @media(max-width:480px) {
      .dbg {
        grid-template-columns: 1fr
      }

      .mc {
        flex: 0 0 280px
      }

      .hbtns {
        flex-direction: column;
        width: 100%
      }

      .hbtns a {
        width: 100%;
        text-align: center;
        justify-content: center
      }

      h1 {
        font-size: clamp(2.5rem, 10vw, 3.5rem)
      }

      .ig {
        gap: var(--sp-md)
      }

      .idb {
        grid-template-columns: 1fr
      }

      .ft {
        grid-template-columns: 1fr
      }
    }

    /* HOME PAGE SPECIFIC */
    .h-paths {
      padding: 100px 24px;
      background: var(--navy);
      display: flex;
      flex-direction: column;
      gap: 32px;
      max-width: 1300px;
      margin: 0 auto;
      position: relative;
    }

    /* Degradados de desvanecimiento para suavizar cortes */
    .h-paths::before,
    .h-paths::after,
    .phil-video-section::before,
    .phil-video-section::after,
    .az-video-section::before,
    .az-video-section::after,
    .reviews-section::before,
    .reviews-section::after,
    .sobre-contacto-section::before,
    .sobre-contacto-section::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      height: 100px;
      z-index: 10;
      pointer-events: none;
    }

    .h-paths::before,
    .phil-video-section::before,
    .az-video-section::before,
    .reviews-section::before,
    .sobre-contacto-section::before {
      top: 0;
      background: linear-gradient(to bottom, var(--navy), transparent);
    }

    .h-paths::after,
    .phil-video-section::after,
    .az-video-section::after,
    .reviews-section::after,
    .sobre-contacto-section::after {
      bottom: 0;
      background: linear-gradient(to top, var(--navy), transparent);
    }

    .h-card {
      position: relative;
      height: 220px;
      border-radius: var(--r);
      overflow: hidden;
      display: flex;
      align-items: center;
      padding: 48px;
      text-decoration: none;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .h-card:hover {
      transform: translateY(-8px);
      border-color: var(--gold);
    }

    .h-card-img {
      position: absolute;
      inset: 0;
      z-index: 1;
      transition: transform 0.6s ease;
    }

    .h-card:hover .h-card-img {
      transform: scale(1.05);
    }

    .h-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(40%) brightness(0.5);
    }

    .h-card-content {
      position: relative;
      z-index: 2;
      max-width: 500px;
    }

    .h-card h3 {
      font-family: var(--fd);
      font-size: 1.8rem;
      font-weight: 800;
      color: white;
      margin-bottom: 8px;
    }

    .h-card h3 strong {
      color: var(--gold);
      font-weight: 700;
      font-style: normal;
    }

    .h-card p {
      font-family: var(--fb);
      color: rgba(255, 255, 255, 0.7);
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 24px;
    }

    .h-card-link {
      font-family: var(--fb);
      font-size: 0.75rem;
      font-weight: 800;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* reviews-slider: grid en desktop, scroll horizontal en móvil */
    .reviews-slider {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 48px;
    }

    .review-card {
      background: linear-gradient(145deg, rgba(20, 42, 62, 0.9) 0%, rgba(10, 24, 38, 0.97) 60%, rgba(6, 14, 22, 1) 100%);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-top: 2px solid rgba(201, 168, 76, 0.4);
      border-radius: 16px;
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.45),
        0 1px 0 rgba(255, 255, 255, 0.04) inset,
        0 -1px 0 rgba(0, 0, 0, 0.3) inset;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.3s;
    }

    .review-card:hover {
      transform: translateY(-6px);
      border-top-color: rgba(201, 168, 76, 0.75);
      box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(201, 168, 76, 0.15),
        0 1px 0 rgba(255, 255, 255, 0.05) inset;
    }

    @media (max-width: 1100px) {
      .reviews-slider {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 700px) {
      .reviews-slider {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 16px;
        scrollbar-width: none;
      }

      .reviews-slider::-webkit-scrollbar {
        display: none;
      }

      .review-card {
        flex: 0 0 85vw;
        max-width: 320px;
        scroll-snap-align: start;
      }
    }

    /* DROPDOWN NAV */
    .nlinks div.dropdown {
      position: relative;
      display: inline-block;
    }

    .dropbtn {
      background: none;
      border: none;
      color: var(--navy2);
      font-family: var(--fb);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      padding: 0;
      display: flex;
      align-items: center;
      gap: 4px;
      transition: color 0.3s;
    }

    .dropbtn:hover {
      color: var(--gold);
    }

    .dropdown-content {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: var(--white);
      min-width: 220px;
      box-shadow: var(--shadow-lg);
      border-radius: 8px;
      z-index: 100;
      padding: 12px 0;
      margin-top: 12px;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    /* Puente invisible para mantener el hover entre el botón y el menú */
    .dropdown-content::before {
      content: '';
      position: absolute;
      top: -12px;
      left: 0;
      right: 0;
      height: 12px;
      background: transparent;
    }

    .dropdown-content a {
      color: var(--navy);
      padding: 12px 24px;
      text-decoration: none;
      display: block;
      font-family: var(--fb);
      font-size: 0.9rem;
      transition: background 0.2s;
    }

    .dropdown-content a:hover {
      background-color: var(--sand);
      color: var(--teal);
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }

    @media (max-width: 900px) {
      .h-paths {
        padding: 40px 16px;
      }

      .h-card {
        height: auto;
        min-height: 240px;
        padding: 32px 24px;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
      }

      .h-card-img {
        position: absolute;
        inset: 0;
      }

      .h-card-content {
        margin-top: 100px;
      }

      .h-card h3 {
        font-size: 1.6rem;
      }
    }

    /* LA AZOHÍA & MODAL */
    /* PATHS HEADER */
    .paths-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 32px auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }

    .paths-header h2 {
      font-family: var(--fd);
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.1;
      margin: 0;
    }

    .paths-header p {
      font-family: var(--fb);
      font-size: 1.1rem;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.7);
      margin: 0;
      max-width: 600px;
    }

    /* PHILOSOPHY SECTION */
    #filosofia {
      position: relative;
      overflow: hidden;
      padding: 120px 24px;
      color: var(--white);
    }

    .phil-video-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .phil-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0.8) 100%);
      z-index: 2;
    }

    .relative {
      position: relative;
      z-index: 3;
    }

    .phil-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .phil-title {
      font-family: var(--fd);
      font-size: 3rem;
      font-weight: 800;
      color: var(--white);
      line-height: 1.1;
      margin: 12px 0 24px;
      letter-spacing: -0.01em;
    }

    .phil-intro {
      font-family: var(--fb);
      font-size: 1.1rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 48px;
    }

    .phil-grid .ey span {
      color: var(--gold2);
    }

    .p-features {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .pf-item {
      background: var(--glass-d);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--glass-border-d);
      border-radius: var(--r);
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      cursor: pointer;
    }

    .pf-head {
      padding: 16px 24px;
      display: flex;
      align-items: center;
      gap: 16px;
      user-select: none;
    }

    .pf-head .material-icons:first-child {
      font-size: 20px;
      background: linear-gradient(90deg, var(--teal2), var(--gold2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
    }

    .pf-head h5 {
      font-family: var(--fd);
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--white);
      margin: 0;
      flex-grow: 1;
    }

    .pf-icon {
      font-size: 20px;
      color: rgba(255, 255, 255, 0.4);
      transition: transform 0.4s;
    }

    .pf-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s;
      padding: 0 24px;
    }

    .pf-item.o {
      background: rgba(22, 44, 64, 0.85);
      border-color: rgba(201, 168, 76, 0.3);
      box-shadow: var(--shadow-lg), var(--shadow-glow);
    }

    .pf-item.o .pf-icon {
      transform: rotate(180deg);
      color: var(--gold);
    }

    .pf-item.o .pf-body {
      max-height: 200px;
      padding-bottom: 24px;
    }

    .pf-body p {
      font-family: var(--fb);
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.9rem;
      line-height: 1.6;
      margin: 0;
    }

    .ins-box {
      position: relative;
      padding-top: 40px;
    }

    .ins-img {
      width: 100%;
      border-radius: 20px;
      box-shadow: var(--shadow-lg);
      display: block;
    }

    .ins-quote {
      position: absolute;
      bottom: -30px;
      left: 40px;
      right: 40px;
      background: white;
      padding: 32px;
      border-radius: 12px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
      border-right: 4px solid var(--gold);
    }

    .ins-quote p {
      font-family: var(--fs);
      font-style: italic;
      font-size: 1.25rem;
      color: var(--navy);
      margin-bottom: 12px;
      line-height: 1.4;
    }

    .ins-quote strong {
      font-family: var(--fb);
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--gold);
    }

    /* LA AZOHÍA VIDEO VERSION */
    .az-video-section {
      position: relative;
      overflow: hidden;
      padding: 120px 24px;
      color: white;
      min-height: 80vh;
      display: flex;
      align-items: center;
    }

    .az-video-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
    }

    .az-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(14, 32, 48, 0.8) 30%, rgba(14, 32, 48, 0.3));
      z-index: -1;
    }

    .az-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
    }

    .az-left {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .az-title.w {
      color: white;
      font-size: 5rem;
      margin-bottom: 20px;
    }

    .az-sub-v {
      font-family: var(--fb);
      font-size: 1.25rem;
      font-weight: 600;
      line-height: 1.6;
      color: var(--gold2);
      margin-bottom: 40px;
    }

    .az-stats-card.v {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 32px 48px;
      margin-bottom: 48px;
      display: flex;
      gap: 40px;
      border-radius: 20px;
      width: fit-content;
      justify-content: center;
    }

    .az-stats-card.v .az-stat-v {
      color: white;
    }

    .az-stats-card.v .az-stat-l {
      color: var(--gold);
    }

    .az-text-v p {
      font-family: var(--fb);
      font-size: 1.05rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 1.5rem;
    }

    .intro-container {
      max-width: fit-content;
      margin: 0 auto;
      text-align: left;
      /* Mantener texto a la izquierda en contenedor centrado */
    }


    .az-text-v strong {
      color: var(--gold);
    }

    .relative {
      position: relative;
    }

    @media (max-width: 1100px) {

      .phil-grid,
      .az-split {
        grid-template-columns: 1fr;
        gap: 60px;
      }

      .ins-quote {
        position: static;
        margin-top: 20px;
      }
    }

    @media (max-width: 900px) {
      .p-features {
        grid-template-columns: 1fr;
      }

      .az-title.w {
        font-size: 3.5rem;
      }

      .az-stats-card.v {
        flex-direction: column;
        width: 100%;
        gap: 24px;
      }
    }

    /* MODAL */
    .modal {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .modal.o {
      display: flex;
    }

    .modal-ovl {
      position: absolute;
      inset: 0;
      background: rgba(14, 32, 48, 0.85);
      backdrop-filter: blur(8px);
    }

    .modal-box {
      position: relative;
      z-index: 1001;
      background: white;
      width: 100%;
      max-width: 500px;
      border-radius: 16px;
      padding: 48px;
      box-shadow: var(--shadow-lg);
      animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    @keyframes modalIn {
      from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
      }

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

    .modal-close {
      position: absolute;
      top: 24px;
      right: 24px;
      background: none;
      border: none;
      font-size: 2rem;
      line-height: 1;
      cursor: pointer;
      color: var(--navy);
      opacity: 0.3;
      transition: opacity 0.2s;
    }

    .modal-close:hover {
      opacity: 1;
    }

    .modal-header {
      margin-bottom: 32px;
    }

    .modal-ey {
      font-family: var(--fb);
      font-weight: 800;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--gold);
      display: block;
      margin-bottom: 12px;
    }

    .modal-header h3 {
      font-family: var(--fd);
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 12px;
    }

    .modal-header p {
      font-family: var(--fb);
      font-size: 0.95rem;
      color: rgba(14, 32, 48, 0.6);
      line-height: 1.6;
    }

    .form-g {
      margin-bottom: 20px;
    }

    .form-g label {
      display: block;
      font-family: var(--fb);
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 8px;
      color: var(--navy);
    }

    .form-g input,
    .form-g select {
      width: 100%;
      padding: 14px 16px;
      background: var(--sand);
      border: 1px solid rgba(0, 0, 0, 0.05);
      border-radius: 8px;
      font-family: var(--fb);
      font-size: 1rem;
      color: var(--navy);
      transition: border-color 0.2s;
    }

    .form-g input:focus,
    .form-g select:focus {
      outline: none;
      border-color: var(--gold);
    }

    .form-note {
      text-align: center;
      font-family: var(--fb);
      font-size: 0.75rem;
      color: rgba(14, 32, 48, 0.4);
      margin-top: 20px;
    }

    @media (max-width: 900px) {
      .az-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .az-title {
        font-size: 2.8rem;
      }

      .az-title {
        font-size: 3rem;
      }

      .az-stats-card {
        flex-direction: column;
        gap: 32px;
        padding: 32px;
        display: flex;
        width: 100%;
      }

      .az-body {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .modal-box {
        padding: 32px;
      }
    }

    /* ─── H-CARD META ─── */
    .h-card-meta {
      font-family: var(--fb);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      color: var(--gold2);
      text-transform: uppercase;
      margin-bottom: 16px;
      opacity: 0.85;
    }

    /* ─── RESEÑAS SECTION ─── */
    .reviews-section {
      padding: 120px 24px;
      background: var(--navy);
    }

    .reviews-title {
      font-family: var(--fd);
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 800;
      color: var(--white);
      text-align: center;
      margin: 16px 0 64px;
      line-height: 1.2;
    }

    .review-stars {
      font-size: 1rem;
      color: var(--gold);
      letter-spacing: 2px;
    }

    .review-text {
      font-family: var(--fb);
      font-size: 0.95rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.8);
      flex: 1;
      font-style: italic;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .review-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--teal2), var(--gold2));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--fd);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      flex-shrink: 0;
    }

    .review-author strong {
      display: block;
      font-family: var(--fb);
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--white);
    }

    .review-author span {
      font-family: var(--fb);
      font-size: 0.75rem;
      color: var(--gold2);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .reviews-cta {
      text-align: center;
    }

    .reviews-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--fb);
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
      padding-bottom: 4px;
      transition: color 0.3s, border-color 0.3s;
    }

    .reviews-link:hover {
      color: var(--gold);
      border-color: var(--gold);
    }

    /* ─── SOBRE RAFA + CONTACTO ─── */
    /* FAQ + CTA GRID */
    .fpg {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--sp-lg);
      align-items: start;
    }

    @media (max-width: 768px) {
      .fpg {
        grid-template-columns: 1fr;
        gap: 48px;
      }
    }

    .sobre-contacto-section {
      padding: 120px 24px;
      background: linear-gradient(160deg, #060B11 0%, #0B1C2C 50%, #0E2030 100%);
      position: relative;
    }

    .sobre-contacto-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    /* Columna izquierda */
    .sobre-left {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .sobre-title {
      font-family: var(--fd);
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.2;
      margin: 8px 0 0;
    }

    .sobre-p {
      font-family: var(--fb);
      font-size: 1rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.75);
    }

    .sobre-p em {
      color: var(--gold2);
      font-style: italic;
    }

    .sobre-stats {
      display: flex;
      gap: 40px;
      margin-top: 16px;
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .sobre-stat {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .sobre-stat-n {
      font-family: var(--fd);
      font-size: 2.4rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
    }

    .sobre-stat-l {
      font-family: var(--fb);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
    }

    /* Columna derecha: contact box */
    .contact-box {
      background: var(--glass-d);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid var(--glass-border-d);
      border-radius: 20px;
      padding: 48px;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    /* Estilo para la nueva cita de Rafa */
    .sobre-quote {
      margin: 32px 0;
      padding-left: 32px;
      border-left: 4px solid var(--gold);
      position: relative;
    }

    .sobre-quote p {
      font-family: var(--fs);
      font-style: italic;
      font-size: clamp(1.1rem, 1.5vw, 1.3rem);
      line-height: 1.6;
      color: var(--white);
      margin: 0;
    }

    .sobre-quote::before {
      content: '"';
      position: absolute;
      left: 10px;
      top: -10px;
      font-family: var(--fs);
      font-size: 3rem;
      color: var(--gold);
      opacity: 0.3;
      line-height: 1;
    }

    .contact-title {
      font-family: var(--fs);
      font-size: clamp(1.6rem, 2.5vw, 2.2rem);
      font-weight: 300;
      color: var(--white);
      margin: 8px 0 12px;
      line-height: 1.2;
    }

    .contact-sub {
      font-family: var(--fb);
      font-size: 0.95rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 32px;
    }

    .contact-form .form-g label {
      color: var(--gold2);
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700;
      letter-spacing: 0.05em;
    }

    .contact-form .form-g input,
    .contact-form .form-g select,
    .contact-form .form-g textarea {
      width: 100%;
      padding: 14px 16px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      font-family: var(--fb);
      font-size: 0.95rem;
      color: var(--white);
      transition: border-color 0.2s;
      resize: vertical;
    }

    .contact-form .form-g input::placeholder,
    .contact-form .form-g textarea::placeholder {
      color: rgba(255, 255, 255, 0.25);
    }

    .contact-form .form-g select option {
      background: var(--navy2);
      color: var(--white);
    }

    .contact-form .form-g input:focus,
    .contact-form .form-g select:focus,
    .contact-form .form-g textarea:focus {
      outline: none;
      border-color: var(--gold);
    }

    .form-note {
      font-family: var(--fb);
      font-size: 0.85rem;
      text-align: center;
      margin-top: 20px;
      color: #FFFFFF !important;
      opacity: 1;
      font-weight: 500;
      letter-spacing: 0.02em;
    }

    .contact-form .form-note {
      color: rgba(255, 255, 255, 0.3);
      text-align: center;
      margin-top: 16px;
    }

    @media (max-width: 1100px) {
      .sobre-contacto-grid {
        grid-template-columns: 1fr;
        gap: 60px;
      }
    }

    @media (max-width: 768px) {
      .sobre-stats {
        gap: 24px;
        flex-wrap: wrap;
      }

      .contact-box {
        padding: 32px 24px;
      }
    }

    /* ─── FOTO INSTRUCTOR ─── */
    .sobre-foto-wrap {
      position: relative;
      margin-top: 40px;
      border-radius: 20px;
      overflow: hidden;
    }

    .sobre-foto {
      width: 100%;
      display: block;
      border-radius: 20px;
      object-fit: cover;
      max-height: 420px;
      border: 1px solid rgba(201, 168, 76, 0.25);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 168, 76, 0.1);
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .sobre-foto-wrap:hover .sobre-foto {
      transform: scale(1.02);
    }

    .sobre-foto-badge {
      position: absolute;
      bottom: 20px;
      left: 20px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(10, 26, 40, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(201, 168, 76, 0.3);
      border-radius: 30px;
      padding: 8px 16px;
      font-family: var(--fb);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold2);
    }

    .sobre-foto-badge .material-icons {
      background: linear-gradient(135deg, var(--gold), var(--teal2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ─── PÁGINA INSTRUCTOR (SOBRE RAFA) ─── */
    .ins-hero {
      position: relative;
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      background: var(--navy);
    }

    .ins-hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
    }

    .ins-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(14, 32, 48, 0.4), var(--navy));
    }

    .ins-hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 0 var(--sp-md);
    }

    .ins-hero h1 {
      font-family: var(--fd);
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.1;
      margin: 16px 0 24px;
    }

    .ins-quote {
      font-family: var(--fs);
      font-style: italic;
      font-size: clamp(1.2rem, 2vw, 1.6rem);
      color: var(--gold2);
      margin-bottom: 32px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.5;
    }

    /* Secciones Divididas */
    .ins-intro-section {
      padding: var(--sp-lg) 0;
      background: var(--navy);
    }

    .ins-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .ins-col h2 {
      font-family: var(--fd);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      color: var(--white);
      margin-top: 12px;
      line-height: 1.2;
    }

    .ins-col p {
      font-family: var(--fb);
      font-size: 1.1rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.7);
      margin-top: 24px;
    }

    /* TIMELINE */
    .timeline-section {
      padding: var(--sp-lg) 0;
      background: var(--navy);
      position: relative;
    }

    .timeline-container {
      max-width: 1000px;
      margin: 60px auto 0;
      position: relative;
    }

    .timeline-container::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, transparent, var(--gold), transparent);
      transform: translateX(-50%);
    }

    .timeline-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      margin-bottom: 80px;
      position: relative;
    }

    .timeline-item:nth-child(even) {
      flex-direction: row-reverse;
    }

    .timeline-content {
      width: 45%;
      background: var(--glass-d);
      backdrop-filter: blur(10px);
      padding: 30px;
      border-radius: var(--r);
      border: 1px solid var(--glass-border-d);
      position: relative;
    }

    .timeline-year {
      font-family: var(--fd);
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--gold);
      margin-bottom: 8px;
    }

    .timeline-item h3 {
      font-family: var(--fd);
      font-size: 1.25rem;
      color: var(--white);
      margin-bottom: 12px;
    }

    .timeline-dot {
      position: absolute;
      left: 50%;
      top: 20px;
      width: 16px;
      height: 16px;
      background: var(--gold);
      border: 4px solid var(--navy);
      border-radius: 50%;
      transform: translateX(-50%);
      z-index: 2;
      box-shadow: 0 0 15px var(--gold);
    }

    .timeline-img {
      width: 45%;
      border-radius: var(--r);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .timeline-img img {
      width: 100%;
      display: block;
      filter: saturate(0.8);
      transition: filter 0.3s;
    }

    .timeline-item:hover .timeline-img img {
      filter: saturate(1.1);
    }

    @media (max-width: 800px) {
      .ins-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .timeline-container::before {
        left: 30px;
      }

      .timeline-item,
      .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
      }

      .timeline-content,
      .timeline-img {
        width: calc(100% - 60px);
        margin-left: 60px;
      }

      .timeline-img {
        margin-top: 20px;
      }

      .timeline-dot {
        left: 30px;
      }
    }

    /* Redes Sociales en Footer */
    .f-socials {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-bottom: 32px;
    }

    .f-social-icon {
      color: rgba(255, 255, 255, 0.4);
      transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .f-social-icon:hover {
      color: var(--gold);
      transform: translateY(-2px) scale(1.1);
    }

    /* ─── BANNER DE COOKIES (RGPD) ─── */
    #cookie-banner {
      position: fixed;
      bottom: -100%;
      left: 0;
      right: 0;
      background: rgba(14, 32, 48, 0.98);
      backdrop-filter: blur(16px);
      border-top: 1px solid var(--gold);
      box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
      z-index: 9999;
      padding: 24px var(--sp-sm);
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    #cookie-banner.show {
      bottom: 0;
    }

    .cb-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: center;
      text-align: center;
    }

    @media (min-width: 768px) {
      .cb-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
      }
    }

    .cb-text p {
      font-family: var(--fb);
      font-size: 0.85rem;
      color: var(--sand);
      margin: 0;
      line-height: 1.6;
    }

    .cb-text a {
      color: var(--gold);
      text-decoration: underline;
      font-weight: 600;
    }

    .cb-btns {
      display: flex;
      gap: 12px;
      width: 100%;
      justify-content: center;
    }

    @media (min-width: 768px) {
      .cb-btns {
        width: auto;
        flex-shrink: 0;
      }
    }

    .cb-btn {
      padding: 10px 24px;
      font-family: var(--fb);
      font-weight: 700;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      border: none;
      border-radius: var(--r);
      cursor: pointer;
      transition: all 0.3s;
    }

    .cb-accept {
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      color: var(--navy);
    }

    .cb-accept:hover {
      box-shadow: var(--shadow-glow);
      transform: translateY(-2px);
    }

    .cb-reject {
      background: transparent;
      border: 1px solid rgba(255,255,255,0.2);
      color: var(--sand);
    }

    .cb-reject:hover {
      background: rgba(255,255,255,0.05);
      border-color: var(--sand);
    }