*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --morado:   #6b3fa0;
      --lila:     #b07fd4;
      --lila-lt:  #e8d5f5;
      --lila-xlt: #f7f0fd;
      --blanco:   #ffffff;
      --gris:     #6b7280;
      --oscuro:   #1a1a2e;
      --borde:    rgba(107,63,160,0.15);
    }

    html { scroll-behavior: smooth; scroll-padding-top: 130px; }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--blanco);
      color: var(--oscuro);
      line-height: 1.7;
      font-size: 15px;
    }

    /* ── NAV ── */
    .promo-bar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 301;
      background: #1a1a2e;
      text-align: center;
      padding: 7px 20px;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 14px;
      font-weight: 400;
      color: #ffffff;
      letter-spacing: 0.5px;
    }

    .promo-bar a {
      color: #c89fe0;
      text-decoration: none;
      font-style: italic;
    }

    .promo-bar a:hover { text-decoration: underline; }

    nav {
      position: fixed;
      top: 38px; left: 0; right: 0;
      z-index: 300;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      padding: 8px 64px;
      background: #ffffff;
      border-bottom: 1px solid var(--borde);
      transition: box-shadow 0.3s;
    }

    .nav-logo { height: 110px; width: auto; display: block; margin: 0 auto; }

    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
    }

    .nav-left  { justify-content: flex-end; padding-right: 48px; }
    .nav-right { justify-content: flex-start; padding-left: 48px; }

    .nav-links a {
      text-decoration: none;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--oscuro);
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--morado); }

    .nav-cta {
      background: var(--morado);
      color: var(--blanco) !important;
      padding: 10px 24px;
      border-radius: 2px;
    }

    .nav-cta:hover { background: #5a3388 !important; color: var(--blanco) !important; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    /* Gradiente suave solo en la parte inferior */
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(
        to bottom,
        transparent 30%,
        rgba(0,0,0,0.15) 60%,
        rgba(0,0,0,0.55) 100%
      );
      pointer-events: none;
    }

    .hero-carousel {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .hero-slide.activo {
      opacity: 1;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      background: transparent;
      backdrop-filter: none;
      padding: 40px 80px 60px;
    }

    .hero-logo {
      width: 160px;
      height: auto;
      margin-bottom: 32px;
      filter: drop-shadow(0 4px 20px rgba(107,63,160,0.15));
    }

    .hero-label {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.90);
      margin-bottom: 6px;
      text-shadow: 0 1px 12px rgba(0,0,0,0.8);
    }

    .hero-titulo {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(28px, 4vw, 52px);
      font-weight: 300;
      line-height: 1.15;
      color: #ffffff;
      margin-bottom: 10px;
      text-shadow: 0 2px 20px rgba(0,0,0,0.7), 0 1px 6px rgba(0,0,0,0.5);
    }

    .hero-titulo em {
      font-style: italic;
      color: #e0b8ff;
    }

    .hero-sub {
      font-size: 13px;
      color: rgba(255,255,255,0.85);
      max-width: 520px;
      margin: 0 auto 20px;
      font-weight: 300;
      text-shadow: 0 1px 10px rgba(0,0,0,0.8);
      line-height: 1.6;
    }

    .hero-btns {
      display: flex;
      gap: 10px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primario {
      background: var(--morado);
      color: var(--blanco);
      padding: 14px 36px;
      text-decoration: none;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      border-radius: 2px;
      transition: background 0.2s, transform 0.2s;
    }

    .btn-primario:hover { background: #5a3388; transform: translateY(-2px); }

    .btn-secundario {
      border: 1px solid var(--morado);
      color: var(--morado);
      padding: 14px 36px;
      text-decoration: none;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      border-radius: 2px;
      transition: all 0.2s;
    }

    .btn-secundario:hover { background: var(--morado); color: var(--blanco); transform: translateY(-2px); }

    /* ── DIVIDER ORNAMENTAL ── */
    .divider {
      text-align: center;
      padding: 20px 0 0;
      color: var(--lila);
      font-size: 22px;
      letter-spacing: 12px;
    }

    /* ── SECCIONES GENERALES ── */
    section {
      padding: 100px 60px;
      position: relative;
      z-index: 20;
    }

    .sec-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--lila);
      margin-bottom: 12px;
    }

    .sec-titulo {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(30px, 4vw, 48px);
      font-weight: 300;
      line-height: 1.15;
      color: var(--oscuro);
      margin-bottom: 16px;
    }

    .sec-titulo em { font-style: italic; color: var(--morado); }

    .sec-linea {
      width: 40px;
      height: 1px;
      background: var(--lila);
      margin-bottom: 48px;
    }

    /* ── SERVICIOS ── */
    #servicios {
      position: relative;
      z-index: 20;
      background: var(--blanco);
      text-align: center;
    }

    .servicios-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .servicio-card {
      background: #fdf8ff;
      border: 1px solid rgba(176,127,212,0.2);
      padding: 0 0 28px;
      border-radius: 2px;
      position: relative;
      margin-top: 20px;
      transition: transform 0.3s, box-shadow 0.3s;
      box-shadow: 0 4px 16px rgba(107,63,160,0.10), 0 1px 3px rgba(0,0,0,0.06);
      overflow: hidden;
    }

    .servicio-img-wrap {
      width: 100%;
      height: 200px;
      overflow: hidden;
    }

    .servicio-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform 0.4s ease;
    }

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

    /* Cinta adhesiva desactivada */
    .servicio-card::before { display: none; }

    /* Rotaciones alternadas para efecto natural */
    .servicio-card:nth-child(1) { transform: rotate(-1.2deg); }
    .servicio-card:nth-child(2) { transform: rotate(0.8deg); }
    .servicio-card:nth-child(3) { transform: rotate(-0.6deg); }
    .servicio-card:nth-child(4) { transform: rotate(1.0deg); }
    .servicio-card:nth-child(5) { transform: rotate(-0.9deg); }

    .servicio-card:hover {
      transform: translateY(-8px) rotate(0deg);
      box-shadow: 0 16px 40px rgba(107,63,160,0.18), 0 2px 6px rgba(0,0,0,0.08);
      z-index: 2;
    }

    .servicio-nombre {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 600;
      color: var(--morado);
      margin-bottom: 8px;
      padding: 20px 28px 0;
    }

    .servicio-desc {
      font-size: 13px;
      color: var(--gris);
      line-height: 1.6;
      padding: 0 28px;
    }

    /* ── JARDINES Y SALONES ── */
    #salones {
      position: relative;
      z-index: 20;
      background: linear-gradient(135deg, var(--lila-xlt) 0%, #f0e4fc 100%);
    }

    .salones-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 20px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .salon-card {
      background: var(--blanco);
      border: 1px solid rgba(176,127,212,0.2);
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(107,63,160,0.10);
      transition: transform 0.3s, box-shadow 0.3s;
      text-align: left;
    }

    .salon-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 36px rgba(107,63,160,0.18);
    }

    .salon-img-wrap {
      width: 100%;
      height: 200px;
      overflow: hidden;
      position: relative;
    }

    .salon-carousel {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .salon-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 0.8s ease;
    }

    .salon-slide.activo { opacity: 1; }

    .salon-img-placeholder {
      width: 100%;
      height: 100%;
    }

    .salon-ph-1 { background: linear-gradient(135deg, #8e44ad 0%, #c084e8 50%, #9b59b6 100%); }
    .salon-ph-2 { background: linear-gradient(135deg, #6b3fa0 0%, #b07fd4 50%, #8e44ad 100%); }
    .salon-ph-3 { background: linear-gradient(135deg, #9b59b6 0%, #d7bde2 50%, #6b3fa0 100%); }

    .salon-info {
      padding: 24px 28px 28px;
    }

    .salon-tipo {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--lila);
      margin-bottom: 6px;
    }

    .salon-nombre {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 600;
      color: var(--morado);
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .salon-ubicacion {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 500;
      color: var(--gris);
      margin-bottom: 14px;
    }

    .salon-ubicacion svg {
      width: 14px;
      height: 14px;
      stroke: var(--morado);
      flex-shrink: 0;
    }

    .salon-desc {
      font-size: 13px;
      color: var(--gris);
      line-height: 1.65;
      margin-bottom: 20px;
    }

    .salon-capacidad {
      display: flex;
      align-items: baseline;
      gap: 6px;
      padding-top: 16px;
      border-top: 1px solid var(--borde);
    }

    .cap-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 600;
      color: var(--morado);
      line-height: 1;
    }

    .cap-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--gris);
    }

    /* ── POR QUÉ ── */
    #nosotros {
      position: relative;
      z-index: 20;
      background: linear-gradient(135deg, #f7f0fd 0%, #efe0fa 100%);
    }

    .nosotros-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      max-width: 1100px;
      margin: 0 auto;
    }

    .razones {
      display: flex;
      flex-direction: column;
      gap: 28px;
      margin-top: 8px;
    }

    .razon {
      display: flex;
      gap: 18px;
      align-items: flex-start;
    }

    .razon-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 32px;
      font-weight: 300;
      color: var(--lila);
      line-height: 1;
      flex-shrink: 0;
      width: 36px;
    }

    .razon-titulo {
      font-weight: 600;
      font-size: 14px;
      color: var(--oscuro);
      margin-bottom: 4px;
    }

    .razon-desc {
      font-size: 13px;
      color: var(--gris);
      line-height: 1.6;
    }

    .nosotros-deco {
      background: linear-gradient(160deg, var(--morado) 0%, var(--lila) 100%);
      border-radius: 4px;
      padding: 60px 48px;
      color: var(--blanco);
      text-align: center;
    }

    .nosotros-deco .stat {
      margin-bottom: 40px;
    }

    .nosotros-deco .stat:last-child { margin-bottom: 0; }

    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 56px;
      font-weight: 300;
      line-height: 1;
      margin-bottom: 6px;
    }

    .stat-desc {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      opacity: 0.85;
    }

    /* ── MOMENTOS / GALERÍA ── */
    #momentos {
      background: var(--blanco);
      text-align: center;
    }

    .galeria-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 200px 200px;
      gap: 12px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .galeria-item {
      border-radius: 0;
      overflow: visible;
      position: relative;
      /* Marco exterior dorado elegante */
      padding: 10px;
      background: linear-gradient(145deg, #e8d5f5, #f7f0fd, #d4b8ee, #f0e4fc);
      box-shadow:
        0 0 0 1px rgba(176,127,212,0.4),
        0 4px 24px rgba(107,63,160,0.18),
        inset 0 0 0 1px rgba(255,255,255,0.6);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    /* Filigrana interna del marco — línea interior decorativa */
    .galeria-item::before {
      content: '';
      position: absolute;
      inset: 5px;
      border: 1px solid rgba(176,127,212,0.5);
      pointer-events: none;
      z-index: 3;
    }

    /* Esquinas decorativas */
    .galeria-item::after {
      content: '';
      position: absolute;
      inset: 2px;
      border: 1px solid rgba(255,255,255,0.4);
      pointer-events: none;
      z-index: 3;
    }

    .galeria-item:first-child {
      grid-row: span 2;
    }

    .galeria-item:hover {
      transform: scale(1.02);
      box-shadow:
        0 0 0 1px rgba(107,63,160,0.6),
        0 8px 36px rgba(107,63,160,0.28),
        inset 0 0 0 1px rgba(255,255,255,0.8);
    }

    .galeria-bg {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s;
    }

    .galeria-overlay {
      position: absolute;
      inset: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .galeria-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 8px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--blanco);
    }

    .galeria-placeholder span { font-size: 28px; }

    /* ── MOMENTOS LAYOUT (video + fotos) ── */
    .momentos-layout {
      display: grid;
      grid-template-columns: 1fr 2fr 1fr;
      gap: 12px;
      max-width: 1200px;
      margin: 0 auto;
      align-items: stretch;
    }

    .momentos-col {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .momento-foto {
      flex: 1;
      overflow: hidden;
      border-radius: 8px;
      height: 200px;
      min-height: 200px;
      max-height: 200px;
    }

    .momento-foto img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s;
    }

    .momento-foto:hover img {
      transform: scale(1.05);
    }

    .momentos-video-wrap {
      display: flex;
      align-items: center;
    }

    .momentos-video-ratio {
      position: relative;
      width: 100%;
      padding-top: 56.25%;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(107,63,160,0.35);
    }

    .momentos-video-ratio iframe,
    .momentos-video-ratio video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
      object-fit: cover;
    }

    /* ── GRID EXTRA MOMENTOS ── */
    .momentos-extra {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 10px;
      max-width: 1200px;
      margin: 10px auto 0;
    }

    .momento-extra-foto {
      height: 170px;
      overflow: hidden;
      border-radius: 8px;
      cursor: pointer;
    }

    .momento-extra-foto img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.45s;
    }

    .momento-extra-foto:hover img { transform: scale(1.06); }

    /* ── PASARELA FULLSCREEN ── */
    #pasarela {
      padding: 0 !important;
      position: relative;
      height: 100vh;
      overflow: hidden;
      background: #0a0510;
    }

    .pasarela-container {
      width: 100%;
      height: 100%;
      position: relative;
    }

    .pasarela-track {
      width: 100%;
      height: 100%;
      position: relative;
    }

    .pasarela-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.9s ease;
    }

    .pasarela-slide.activo { opacity: 1; }

    .pasarela-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .pasarela-video-wrap {
      width: 100%;
      height: 100%;
    }

    .pasarela-video-wrap video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .pasarela-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(10,5,20,0.65) 0%,
        rgba(10,5,20,0.15) 55%,
        rgba(10,5,20,0.55) 100%
      );
      z-index: 2;
      pointer-events: none;
    }

    .pasarela-header {
      position: absolute;
      top: 50%;
      left: 80px;
      transform: translateY(-50%);
      z-index: 3;
      text-align: left;
      max-width: 480px;
    }

    .pasarela-cta {
      position: absolute;
      right: 80px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 3;
    }

    .btn-pasarela {
      display: inline-block;
      padding: 18px 30px;
      background: transparent;
      border: 1.5px solid rgba(255,255,255,0.75);
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.3s, border-color 0.3s;
      backdrop-filter: blur(6px);
      white-space: nowrap;
    }

    .btn-pasarela:hover {
      background: rgba(255,255,255,0.18);
      border-color: #fff;
    }

    .pasarela-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 4;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 50%;
      width: 54px;
      height: 54px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
      backdrop-filter: blur(4px);
    }

    .pasarela-nav:hover { background: rgba(255,255,255,0.22); }

    .pasarela-nav svg {
      width: 22px;
      height: 22px;
      stroke: #fff;
    }

    .pasarela-nav.prev { left: 22px; }
    .pasarela-nav.next { right: 22px; }

    .pasarela-dots {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 4;
      display: flex;
      gap: 9px;
      align-items: center;
    }

    .pasarela-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(255,255,255,0.35);
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
      border: none;
    }

    .pasarela-dot.activo {
      background: #fff;
      transform: scale(1.4);
    }

    /* ── TESTIMONIOS ── */
    #testimonios {
      position: relative;
      z-index: 20;
      background: var(--oscuro);
      text-align: center;
    }

    #testimonios .sec-titulo { color: var(--blanco); }
    #testimonios .sec-label { color: var(--lila); }

    .testimonios-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .testimonio {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(176,127,212,0.2);
      border-radius: 4px;
      padding: 36px 28px;
      text-align: left;
    }

    .testimonio-texto {
      font-family: 'Cormorant Garamond', serif;
      font-size: 17px;
      font-style: italic;
      color: rgba(255,255,255,0.85);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .testimonio-nombre {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--lila);
    }

    .testimonio-evento {
      font-size: 11px;
      color: rgba(255,255,255,0.4);
      margin-top: 2px;
    }

    .estrellas { color: var(--lila); font-size: 14px; margin-bottom: 14px; }

    /* ── CONTACTO / CTA ── */
    #contacto {
      position: relative;
      z-index: 20;
      background: linear-gradient(135deg, var(--lila-xlt) 0%, #f0e4fc 100%);
      text-align: center;
    }

    .contacto-inner {
      max-width: 680px;
      margin: 0 auto;
    }

    .contacto-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 48px;
      text-align: left;
    }

    .contacto-form .full { grid-column: span 2; }

    .form-group label {
      display: block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--morado);
      margin-bottom: 8px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid var(--borde);
      border-radius: 2px;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      color: var(--oscuro);
      background: var(--blanco);
      outline: none;
      transition: border-color 0.2s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--morado);
    }

    .form-group textarea { resize: vertical; min-height: 100px; }

    .form-submit {
      grid-column: span 2;
      text-align: center;
      margin-top: 8px;
    }

    /* ── REDES SOCIALES ── */
    .redes {
      display: flex;
      gap: 16px;
      justify-content: center;
      margin-top: 40px;
    }

    .red-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    }

    .red-btn:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.22); }

    .red-btn.fb { background: #1877f2; }
    .red-btn.ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
    .red-btn.tt { background: #010101; }

    .red-btn svg { width: 26px; height: 26px; fill: white; display: block; }

    /* ── FOOTER ── */
    footer {
      background: var(--oscuro);
      color: rgba(255,255,255,0.5);
      text-align: center;
      padding: 40px 60px;
      font-size: 12px;
      letter-spacing: 1px;
    }

    footer img { height: 80px; width: auto; margin-bottom: 20px; }

    footer p { margin-bottom: 6px; }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .promo-bar { font-size: 12px; padding: 9px 16px; z-index: 400; }
      nav { top: 37px; }
      .nav-links { display: none; }
      section { padding: 70px 24px; }
      .nosotros-inner { grid-template-columns: 1fr; gap: 40px; }
      .testimonios-grid { grid-template-columns: 1fr; }
      .galeria-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .galeria-item:first-child { grid-row: span 1; }
      .momentos-layout { grid-template-columns: 1fr; }
      .momentos-col { flex-direction: row; flex-wrap: wrap; }
      .momento-foto { flex: 0 0 calc(50% - 6px); height: 140px; min-height: 140px; max-height: 140px; }
      .momentos-video-wrap { order: -1; }
      .momentos-extra { grid-template-columns: repeat(3, 1fr); gap: 8px; }
      .momento-extra-foto { height: 120px; }
      .pasarela-header { left: 24px; max-width: 55%; }
      .pasarela-cta { right: 20px; top: auto; bottom: 70px; transform: none; }
      .btn-pasarela { font-size: 10px; padding: 13px 18px; letter-spacing: 1.5px; }
      .contacto-form { grid-template-columns: 1fr; }
      .contacto-form .full { grid-column: span 1; }
      .form-submit { grid-column: span 1; }
      .redes { flex-direction: column; align-items: center; }

      /* ── HERO MÓVIL ── */
      .hero {
        height: 100vh;
        height: 100dvh;
        min-height: unset;
        display: block;
        position: relative;
      }
      .hero::after {
        background: linear-gradient(
          to bottom,
          transparent 25%,
          rgba(0,0,0,0.15) 55%,
          rgba(0,0,0,0.70) 100%
        );
      }
      .hero-slide {
        background-size: cover;
        background-position: center center;
      }
      /* Texto pegado al fondo con posición absoluta — funciona en todos los navegadores móvil */
      .hero-inner {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px 24px 44px;
        background: transparent;
      }
      .hero-label { font-size: 8px; margin-bottom: 4px; letter-spacing: 3px; }
      .hero-titulo { font-size: 26px; margin-bottom: 8px; }
      .hero-sub { font-size: 12px; margin-bottom: 16px; max-width: 100%; }
      .hero-btns { flex-direction: column; align-items: stretch; gap: 10px; }
      .hero-btns .btn-primario,
      .hero-btns .btn-secundario { padding: 13px 24px; font-size: 11px; text-align: center; }

      /* ── SALONES MÓVIL ── */
      .salones-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }
      .salon-img-wrap { height: 180px; }
      .salon-info { padding: 18px 20px 22px; }

      /* ── SERVICIOS MÓVIL ── */
      .servicios-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }
      /* Sin rotación en móvil — las cards quedan recortadas si se rotan */
      .servicio-card:nth-child(1),
      .servicio-card:nth-child(2),
      .servicio-card:nth-child(3),
      .servicio-card:nth-child(4),
      .servicio-card:nth-child(5) { transform: none; }
      .servicio-card:hover { transform: translateY(-4px); }
      .servicio-img-wrap { height: 140px; }
      .servicio-nombre { font-size: 16px; padding: 14px 16px 0; }
      .servicio-desc { font-size: 12px; padding: 0 16px; }
    }

    @media (max-width: 400px) {
      .servicios-grid { grid-template-columns: 1fr; }
      .servicio-img-wrap { height: 180px; }
    }

    /* ── BOTÓN FLOTANTE WHATSAPP ── */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 60px;
      height: 60px;
      background: #25d366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.45);
      z-index: 999;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      animation: wa-pulse 2.5s infinite;
    }

    .wa-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 28px rgba(37,211,102,0.6);
    }

    .wa-float svg { width: 32px; height: 32px; fill: white; }

    @keyframes wa-pulse {
      0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
      50%  { box-shadow: 0 4px 32px rgba(37,211,102,0.75), 0 0 0 8px rgba(37,211,102,0.12); }
      100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
    }

    /* ── MENÚ HAMBURGUESA ── */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      z-index: 401;
      background: none;
      border: none;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--morado);
      border-radius: 2px;
      transition: all 0.3s ease;
      transform-origin: center;
    }

    .hamburger.abierto span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.abierto span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.abierto span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Overlay oscuro detrás del drawer */
    .nav-overlay {
      display: block;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.4);
      z-index: 399;
      backdrop-filter: blur(2px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }

    .nav-overlay.activo {
      opacity: 1;
      pointer-events: auto;
    }

    /* Drawer lateral */
    .nav-drawer {
      position: fixed;
      top: 0;
      right: -50vw;
      width: 50vw;
      height: 100vh;
      background: #fff;
      z-index: 400;
      display: flex;
      flex-direction: column;
      padding: 90px 36px 48px;
      transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
      box-shadow: -4px 0 32px rgba(107,63,160,0.12);
      border-left: 1px solid var(--borde);
    }

    .nav-drawer.abierto { right: 0; }

    .nav-drawer ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .nav-drawer ul li a {
      display: block;
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--oscuro);
      padding: 16px 0;
      border-bottom: 1px solid var(--borde);
      transition: color 0.2s, padding-left 0.2s;
    }

    .nav-drawer ul li a:hover {
      color: var(--morado);
      padding-left: 8px;
    }

    .nav-drawer ul li:last-child a {
      margin-top: 24px;
      background: var(--morado);
      color: #fff !important;
      text-align: center;
      padding: 14px 24px;
      border-radius: 2px;
      border: none;
    }

    .nav-drawer .drawer-logo {
      margin-bottom: 32px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--borde);
    }

    .nav-drawer .drawer-logo img { height: 48px; width: auto; }

    .nav-drawer .drawer-redes {
      margin-top: auto;
      display: flex;
      gap: 14px;
      padding-top: 24px;
      border-top: 1px solid var(--borde);
    }

    .nav-drawer .drawer-redes a {
      width: 38px; height: 38px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }

    .nav-drawer .drawer-redes a svg { width: 18px; height: 18px; fill: white; }

    @media (max-width: 768px) {
      nav {
        padding: 8px 20px;
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: auto;
      }
      .nav-links { display: none; }
      /* Logo siempre en la columna central */
      .nav-logo {
        height: 70px;
        grid-column: 2;
        grid-row: 1;
      }
      /* Hamburger en la columna derecha */
      .hamburger {
        display: flex;
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
      }
      .nav-overlay { display: block; }
      .nav-drawer { display: flex; }
    }

    @media (min-width: 769px) {
      .hamburger { display: none; }
      .nav-overlay { display: none !important; }
      .nav-drawer { display: none !important; }
    }