:root {
    /* Paleta Base */
    --hs-carbon: #1C1C1C;
    --hs-sage-grey: #DADDD8;
    --hs-sand: #ECEBE4;
    --hs-off-white: #EEF0F2;
    --hs-pure-white: #FAFAFF;
    /* Acentos Premium */
    --hs-copper: #C29B6F;
    --hs-bronze: #9A724B;
    
    /* Tipografía */
    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

/* === MEJORA: Suavizado de fuentes y ocultamiento de cursor nativo === */
body {
    font-family: var(--font-sans);
    background-color: var(--hs-pure-white);
    color: var(--hs-carbon);
    font-weight: 300;
    overflow-x: hidden;
    letter-spacing: 0.02em;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none; /* Oculta el cursor nativo */
}

/* Asegurar que los enlaces no muestren el cursor de "mano" nativo */
a, button, input, select, .floating-concierge, .floating-up-arrow { cursor: none !important; }

::selection { background-color: var(--hs-copper); color: var(--hs-pure-white); }

h1, h2, h3, h4, h5, .serif { font-family: var(--font-serif); font-weight: 400; }

.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--hs-bronze);
}

/* Utilidades de Color */
.text-hs-carbon { color: var(--hs-carbon) !important; }
.text-hs-copper { color: var(--hs-copper) !important; }
.text-hs-bronze { color: var(--hs-bronze) !important; }
.text-hs-pure-white { color: var(--hs-pure-white) !important; }
.text-hs-sage-grey { color: var(--hs-sage-grey) !important; }

.bg-hs-carbon { background-color: var(--hs-carbon) !important; }
.bg-hs-sand { background-color: var(--hs-sand) !important; }
.bg-hs-off-white { background-color: var(--hs-off-white) !important; }

.section-padding { padding: 140px 0; }

/* === ADICIÓN: Sombras Dramáticas y Luces de Estudio === */
.shadow-dramatic {
    box-shadow: 0 40px 80px rgba(0,0,0,0.25), 
                inset 0 1px 0 rgba(255,255,255,0.9), /* Luz superior del borde */
                inset 0 -1px 0 rgba(0,0,0,0.05) !important;
    transition: box-shadow 0.6s ease, transform 0.6s ease;
}
.bg-hs-carbon .shadow-dramatic, .shadow-dramatic.dark-mode {
    box-shadow: 0 40px 80px rgba(0,0,0,0.8), 
                inset 0 1px 0 rgba(194, 155, 111, 0.4) !important; /* Luz cobre reflectante */
}
.shadow-dramatic:hover {
    box-shadow: 0 50px 100px rgba(0,0,0,0.35), 
                inset 0 1px 0 rgba(255,255,255,1) !important;
}

/* === ADICIÓN: Glows Atmosféricos (Resplandores) === */
.glow-text {
    position: relative;
    z-index: 1;
}
.glow-text::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120%; height: 150%;
    background: radial-gradient(ellipse, rgba(194, 155, 111, 0.15) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    pointer-events: none;
}
.glow-text-dark {
    text-shadow: 0 0 40px rgba(194, 155, 111, 0.5), 0 0 10px rgba(255,255,255,0.2);
}

/* === MEJORA: Preloader de Lujo === */
.hs-preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background-color: var(--hs-carbon);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 1.2s;
}
.hs-preloader.fade-out { opacity: 0; visibility: hidden; }
.hs-preloader-brand {
    color: var(--hs-pure-white);
    font-family: var(--font-serif);
    font-size: 2.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: pulse-glow 2s infinite alternate;
}
.hs-preloader-brand span { color: var(--hs-copper); }
@keyframes pulse-glow { 0% { opacity: 0.6; } 100% { opacity: 1; text-shadow: 0 0 15px rgba(194, 155, 111, 0.2); } }

/* === MEJORA: Cursor Personalizado === */
.cursor-dot {
    width: 6px; height: 6px;
    background-color: var(--hs-copper);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
    box-shadow: 0 0 10px rgba(194, 155, 111, 0.8); /* Glow al cursor */
}
.cursor-outline {
    width: 40px; height: 40px;
    border: 1px solid rgba(194, 155, 111, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}
/* Efecto Hover del Cursor */
.cursor-outline.hover-active {
    width: 60px; height: 60px;
    background-color: rgba(194, 155, 111, 0.1);
    border-color: transparent;
}

/* === Navbar Premium === */
.navbar-hs {
    background-color: transparent;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 35px 0;
    border-bottom: 1px solid transparent;
}

.navbar-hs.scrolled {
    background-color: rgba(28, 28, 28, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(194, 155, 111, 0.3);
}

.brand-logo-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* MODIFICACIÓN: Logo más grande y sin encuadre */
    height: 80px; 
    width: auto;
    border: none !important; /* Eliminamos el recuadro */
    margin-right: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: transparent;
    padding: 0;
    object-fit: contain;
}

/* Efecto de resplandor sutil al logo en lugar de borde */
.navbar-brand-hs:hover .brand-logo-box {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(194, 155, 111, 0.4));
    box-shadow: none !important;
}

.navbar-brand-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--hs-pure-white) !important;
}

.nav-link-hs {
    color: var(--hs-pure-white) !important;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    margin: 0 15px;
    position: relative;
    transition: color 0.4s ease;
}

.nav-link-hs:hover { color: var(--hs-copper) !important; text-shadow: 0 0 10px rgba(194, 155, 111, 0.5); }

/* === Animaciones (Scroll Reveal) === */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-up.active { opacity: 1; transform: translateY(0); }

/* === Componentes Base: Hero con Video Atmosférico === */
.hero-luxury {
    position: relative; 
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hs-pure-white);
    text-align: center;
    overflow: hidden; 
    background-color: var(--hs-carbon); 
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover; 
    opacity: 0.8; 
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(28,28,28,0.5), rgba(28,28,28,0.8));
    z-index: 1;
}

.hero-luxury .container {
    position: relative;
    z-index: 2;
}

.hero-title { font-size: 6rem; line-height: 1.1; margin-bottom: 30px; letter-spacing: -0.02em; }
.hero-subtitle { font-weight: 300; text-transform: uppercase; letter-spacing: 0.6em; font-size: 0.9rem; color: var(--hs-sage-grey); margin-bottom: 50px; }

.btn-hs-primary {
    background-color: transparent;
    border: 1px solid var(--hs-copper);
    color: var(--hs-copper);
    border-radius: 0;
    padding: 20px 50px;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2); /* Sombra inicial */
}

.btn-hs-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0%; height: 100%;
    background-color: var(--hs-copper);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-hs-primary:hover { color: var(--hs-carbon); box-shadow: 0 15px 30px rgba(194, 155, 111, 0.3); }
.btn-hs-primary:hover::before { width: 100%; }

.btn-hs-dark {
    background-color: var(--hs-carbon);
    border: 1px solid var(--hs-carbon);
    color: var(--hs-pure-white);
    border-radius: 0;
    padding: 15px 35px;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.btn-hs-dark:hover { background-color: var(--hs-pure-white); color: var(--hs-carbon); border-color: var(--hs-carbon); box-shadow: 0 15px 30px rgba(0,0,0,0.2); }

/* === Imágenes Placeholder === */
.img-placeholder-premium {
    background-color: var(--hs-sage-grey);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.img-placeholder-premium::after {
    content: 'HS ARCHIVE';
    font-family: var(--font-sans);
    font-weight: 200;
    letter-spacing: 0.4em;
    color: rgba(28,28,28,0.15);
    position: absolute;
    transform: rotate(-45deg);
    font-size: 2rem;
    pointer-events: none;
}

/* === Tarjetas Boutique === */
.card-boutique {
    border: none;
    background-color: transparent;
    border-radius: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease; /* Transición para la sombra */
}
.card-boutique:hover { 
    transform: translateY(-15px); 
    box-shadow: 0 40px 60px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.8); /* Sombra dramática en hover */
}

.card-boutique .img-container {
    background-color: var(--hs-off-white);
    padding: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.card-boutique-body { padding: 30px 0 0 0; text-align: center; }
.product-category { text-transform: uppercase; font-size: 0.65rem; letter-spacing: 0.3em; color: var(--hs-bronze); margin-bottom: 12px; }
.product-title { font-size: 1.3rem; font-weight: 400; margin-bottom: 15px; color: var(--hs-carbon); }
.product-price { font-family: var(--font-sans); font-weight: 600; font-size: 1.1rem; color: var(--hs-carbon); margin-bottom: 25px; }

/* Formulario */
.form-hs .form-control, .form-hs .form-select {
    border-radius: 0; border: none; border-bottom: 1px solid rgba(28,28,28,0.2);
    background-color: transparent; padding: 15px 5px; color: var(--hs-carbon); font-weight: 300;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.form-hs .form-control:focus, .form-hs .form-select:focus { 
    box-shadow: 0 10px 20px rgba(194, 155, 111, 0.05); /* Resplandor sutil al enfocar */
    border-color: var(--hs-bronze); 
}
.form-hs label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--hs-bronze); font-weight: 600; }

/* Controles Flotantes */
.floating-concierge {
    position: fixed; bottom: 40px; right: 40px; width: 60px; height: 60px;
    background-color: var(--hs-carbon); color: var(--hs-copper); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), inset 0 2px 4px rgba(255,255,255,0.1);
    cursor: pointer; z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); font-family: var(--font-serif); font-size: 1.5rem; text-decoration: none;
}
.floating-concierge:hover { 
    transform: scale(1.15) translateY(-5px); 
    background-color: var(--hs-copper); color: var(--hs-carbon); 
    box-shadow: 0 20px 40px rgba(194, 155, 111, 0.4), inset 0 2px 4px rgba(255,255,255,0.5);
}

.floating-up-arrow {
    position: fixed; bottom: 115px; right: 47px; width: 45px; height: 45px;
    background-color: transparent; color: var(--hs-carbon); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--hs-carbon); cursor: pointer; z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); font-family: var(--font-sans); font-size: 1.2rem; text-decoration: none;
    backdrop-filter: blur(5px);
}
.floating-up-arrow:hover { 
    transform: scale(1.15) translateY(-5px); 
    background-color: var(--hs-carbon); color: var(--hs-pure-white); border-color: var(--hs-carbon);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Footer Estandar de la Industria */
.footer-hs { background-color: var(--hs-carbon); color: var(--hs-sage-grey); padding: 100px 0 40px 0; }
.footer-hs-title { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--hs-copper); margin-bottom: 25px; font-weight: 500; text-shadow: 0 0 10px rgba(194, 155, 111, 0.2); }
.footer-hs-link { color: var(--hs-sage-grey); text-decoration: none; font-size: 0.8rem; transition: color 0.3s ease, text-shadow 0.3s ease; display: block; margin-bottom: 12px; }
.footer-hs-link:hover { color: var(--hs-pure-white); text-shadow: 0 0 8px rgba(255,255,255,0.3); }
.footer-hs-bottom { border-top: 1px solid rgba(218, 221, 216, 0.1); margin-top: 60px; padding-top: 30px; font-size: 0.7rem; letter-spacing: 0.05em; }

@media (max-width: 992px) { .hero-title { font-size: 3.5rem; } .section-padding { padding: 100px 0; } }
/* Apagar cursor custom en móviles por usabilidad */
@media (max-width: 768px) { body { cursor: auto; } .cursor-dot, .cursor-outline { display: none; } a, button { cursor: pointer !important; } }


/*

.acerca-nosotros {
  background: var(--crema);
}

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

.acerca-imagen img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.acerca-parrafos {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.acerca-parrafos p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.7;
  color: var(--gris-o);
  font-weight: 300;
}

.acerca-parrafos strong {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--negro);
}

    /*
    ┌──────────────────────────────────────────────────────┐
    │  PARTE 1: VARIABLES CSS                              │
    │                                                      │
    │  Son "cajitas con nombre" para guardar valores que   │
    │  vas a reusar en todo el archivo.                    │
    │                                                      │
    │  Se definen en :root (= toda la página)              │
    │  Formato:  --nombre: valor;                          │
    │  Para usar: var(--nombre)                            │
    │                                                      │
    │  ¿Por qué?                                           │
    │  Si mañana cambias el rojo, lo cambias en UN lugar   │
    │  y se actualiza en toda la página automáticamente.   │
    └──────────────────────────────────────────────────────┘
    */
    :root {
      --rojo:   #E1222B;
      --crema:  #F9F9F9;
      --negro:  #0F0F0F;
      --gris-c: #E6E6E6;
      --gris-o: #2E2E2E;
      --sans:   'Instrument Sans', sans-serif;
      --serif:  'Cormorant Garamond', serif;
    }

    /*
    ┌──────────────────────────────────────────────────────┐
    │  PARTE 2: RESET                                      │
    │                                                      │
    │  Los navegadores tienen estilos por defecto que no   │
    │  queremos (margins, paddings raros). Esto los quita. │
    └──────────────────────────────────────────────────────┘
    */
    *, *::before, *::after {
      box-sizing: border-box; /* padding no agranda el elemento */
      margin: 0;
      padding: 0;
    }

    body {
      font-family: var(--sans);
      background: var(--crema);
      color: var(--negro);
    }

    img  { display: block; max-width: 100%; }
    a    { text-decoration: none; color: inherit; }

    /*
    ┌──────────────────────────────────────────────────────┐
    │  PARTE 3: ANIMACIÓN DE ENTRADA AL SCROLL             │
    │                                                      │
    │  Técnica "Reveal on scroll":                         │
    │  1. El elemento empieza invisible y abajo.           │
    │  2. Cuando el usuario llega (con JS), le agrego      │
    │     la clase .visible → aparece suave.               │
    │                                                      │
    │  [data-reveal] = selecciona cualquier elemento con   │
    │  el atributo data-reveal en su etiqueta HTML.        │
    └──────────────────────────────────────────────────────┘
    */
    [data-reveal] {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    [data-reveal].visible {
      opacity: 1;
      transform: translateY(0);
    }
    /* Retrasos para efecto en cascada */
    [data-reveal][data-delay="1"] { transition-delay: 0.1s; }
    [data-reveal][data-delay="2"] { transition-delay: 0.2s; }
    [data-reveal][data-delay="3"] { transition-delay: 0.3s; }

    /*
    ┌──────────────────────────────────────────────────────┐
    │  ESTILOS COMPARTIDOS                                 │
    └──────────────────────────────────────────────────────┘
    */
    .seccion      { padding: 100px 80px; }

    .sec-etiqueta {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.25em; /* espacia letras: R E S E Ñ A S */
      text-transform: uppercase;
      color: var(--rojo);
      margin-bottom: 12px;
    }

    .sec-titulo {
      font-family: var(--sans);
      font-size: clamp(32px, 3.5vw, 48px);
      /*
        clamp(min, preferido, max):
        - nunca menor a 32px
        - intenta ser 3.5% del ancho de pantalla
        - nunca mayor a 48px
        Esto hace el texto RESPONSIVO sin media queries.
      */
      font-weight: 700;
      letter-spacing: -0.025em;
      line-height: 1.05;
    }

    .sec-titulo em {
      font-family: var(--serif); /* cambia a fuente elegante */
      font-style: italic;
      font-weight: 300;
    }


    /* ════════════════════════════════════════
       RESEÑAS / TESTIMONIALES
    ════════════════════════════════════════ */

    .testimoniales {
      background: var(--negro);
    }

    /* Sobreescribimos colores para fondo oscuro */
    .testimoniales .sec-titulo    { color: var(--crema); }
    .testimoniales .sec-titulo em { color: rgba(249,249,249,0.3); }

    .test-header {
      display: flex;               /* hijos en fila */
      align-items: flex-end;       /* alineados abajo */
      justify-content: space-between;
      margin-bottom: 52px;
    }

    .test-cal-numero {
      font-size: 52px;
      font-weight: 700;
      letter-spacing: -0.04em;
      color: var(--crema);
      line-height: 1;
      text-align: right;
    }
    .test-cal-label {
      font-size: 10px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(249,249,249,0.3);
      margin-top: 4px;
      text-align: right;
    }

    /*
      CSS GRID — la herramienta para layouts en columnas.

      grid-template-columns: repeat(3, 1fr)
        = 3 columnas que se reparten el espacio en partes iguales.
        "1fr" = 1 fracción del espacio disponible.

      gap = espacio entre los elementos.
    */
    .test-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
    }

    .test-card {
      padding: 40px;
      background: rgba(249,249,249,0.02);
      border: 1px solid rgba(249,249,249,0.07);
      position: relative; /* necesario para el ::before */
      transition: background 0.3s;
    }
    .test-card:hover { background: rgba(249,249,249,0.05); }


/* ═══════════════════════════════════════════════
   NUEVAS SECCIONES: RESEÑAS Y NEWSLETTER
═══════════════════════════════════════════════ */

/* Tarjetas de Reseñas */
.test-card {
    padding: 50px 40px;
    background: var(--hs-carbon);
    border: 1px solid rgba(218, 221, 216, 0.05);
    position: relative;
    transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.test-card:hover { background: rgba(194, 155, 111, 0.05); }

.test-card::before {
    content: '\201C';
    font-family: var(--font-serif);
    font-size: 120px;
    font-weight: 400;
    color: var(--hs-copper);
    line-height: 0.5;
    position: absolute;
    top: 30px;
    left: 30px;
    opacity: 0.1;
    pointer-events: none;
}

.test-estrellas { color: var(--hs-copper); font-size: 14px; letter-spacing: 2px; margin-bottom: 25px; }

.test-texto {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 300;
    font-style: italic;
    color: rgba(218, 221, 216, 0.7);
    line-height: 1.8;
    margin-bottom: 35px;
}

.test-autor { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--hs-pure-white); }
.test-ciudad { font-size: 0.6rem; color: rgba(218, 221, 216, 0.4); margin-top: 5px; letter-spacing: 0.08em; }

.test-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
    background: var(--hs-copper); transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.test-card:hover::after { width: 100%; }

/* Newsletter */
.newsletter-hs {
    border-top: 1px solid rgba(28, 28, 28, 0.1);
    border-bottom: 1px solid rgba(28, 28, 28, 0.1);
}

.nl-watermark {
    position: absolute;
    right: -5%;
    bottom: -15%;
    font-family: var(--font-serif);
    font-size: 250px;
    font-weight: 700;
    color: rgba(28, 28, 28, 0.03);
    letter-spacing: -0.05em;
    pointer-events: none;
    line-height: 1;
    z-index: 0;
}

.nl-input {
    background: rgba(28, 28, 28, 0.03);
    border: 1px solid rgba(28, 28, 28, 0.2);
    border-right: none;
    border-radius: 0;
    padding: 20px 25px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--hs-carbon);
}
.nl-input:focus {
    box-shadow: none;
    background: rgba(28, 28, 28, 0.05);
    border-color: var(--hs-bronze);
}

























/* ═══════════════════════════════════════════════
    VARIABLES — Sistema de diseño High Sierra
═══════════════════════════════════════════════ */
:root {
    --hs-carbon:      #1C1C1C;
    --hs-carbon-soft: #242424;
    --hs-sage-grey:   #DADDD8;
    --hs-sand:        #ECEBE4;
    --hs-off-white:   #EEF0F2;
    --hs-pure-white:  #FAFAFF;
    --hs-copper:      #C29B6F;
    --hs-bronze:      #9A724B;
    --font-sans:      'Montserrat', sans-serif;
    --font-serif:     'Playfair Display', serif;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--hs-pure-white);
    color: var(--hs-carbon);
    font-weight: 300;
    overflow-x: hidden;
    letter-spacing: 0.02em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
}

a, button, input { cursor: none !important; }

::selection { background-color: var(--hs-copper); color: var(--hs-pure-white); }

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════════════
    CURSOR PERSONALIZADO (High Sierra)
═══════════════════════════════════════════════ */
.cursor-dot {
    width: 6px; height: 6px;
    background-color: var(--hs-copper);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
    box-shadow: 0 0 10px rgba(194, 155, 111, 0.8);
}
.cursor-outline {
    width: 40px; height: 40px;
    border: 1px solid rgba(194, 155, 111, 0.5);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}
.cursor-outline.hover-active {
    width: 60px; height: 60px;
    background-color: rgba(194, 155, 111, 0.08);
    border-color: transparent;
}

/* ═══════════════════════════════════════════════
    ANIMACIÓN DE SCROLL (estructura HERA, timing HS)
═══════════════════════════════════════════════ */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1),
                transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
[data-reveal].visible        { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="1"] { transition-delay: 0.12s; }
[data-reveal][data-delay="2"] { transition-delay: 0.24s; }
[data-reveal][data-delay="3"] { transition-delay: 0.36s; }

/* ═══════════════════════════════════════════════
    COMPARTIDOS
═══════════════════════════════════════════════ */
.seccion { padding: 120px 80px; }

.sec-etiqueta {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--hs-copper);
    margin-bottom: 14px;
}

.sec-titulo {
    font-family: var(--font-serif);
    font-size: clamp(34px, 3.8vw, 54px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.08;
}
.sec-titulo em {
    font-style: italic;
    color: var(--hs-copper);
    opacity: 0.85;
}

/* Sombra dramática HS */
.shadow-dramatic {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22),
                inset 0 1px 0 rgba(194, 155, 111, 0.25);
    transition: box-shadow 0.6s ease, transform 0.6s ease;
}


/* ═══════════════════════════════════════════════
    SECCIÓN: RESEÑAS / TESTIMONIALES
═══════════════════════════════════════════════ */
.testimoniales {
    background: var(--hs-carbon);
}

.testimoniales .sec-titulo    { color: var(--hs-pure-white); }
.testimoniales .sec-titulo em { color: var(--hs-copper); opacity: 0.7; }

.test-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 64px;
}

.test-cal-numero {
    font-family: var(--font-serif);
    font-size: 60px;
    font-weight: 400;
    letter-spacing: -0.04em;
    color: var(--hs-copper);
    line-height: 1;
    text-align: right;
    text-shadow: 0 0 40px rgba(194, 155, 111, 0.35);
}
.test-cal-label {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(218, 221, 216, 0.35);
    margin-top: 6px;
    text-align: right;
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(218, 221, 216, 0.06);
}

.test-card {
    padding: 52px 44px;
    background: var(--hs-carbon);
    border: 1px solid rgba(218, 221, 216, 0.07);
    position: relative;
    transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.test-card:hover { background: rgba(194, 155, 111, 0.04); }

/* Comilla decorativa */
.test-card::before {
    content: '\201C';
    font-family: var(--font-serif);
    font-size: 130px;
    font-weight: 400;
    color: var(--hs-copper);
    line-height: 0.5;
    position: absolute;
    top: 32px;
    left: 32px;
    opacity: 0.1;
    pointer-events: none;
}

.test-estrellas { display: flex; gap: 4px; margin-bottom: 24px; }
.test-estrellas span { color: var(--hs-copper); font-size: 12px; }

.test-texto {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    color: rgba(218, 221, 216, 0.65);
    line-height: 1.85;
    margin-bottom: 36px;
}

.test-autor {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--hs-pure-white);
}
.test-ciudad {
    font-size: 0.62rem;
    color: rgba(218, 221, 216, 0.3);
    margin-top: 4px;
    letter-spacing: 0.06em;
}

/* Línea copper inferior en hover */
.test-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--hs-copper);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.test-card:hover::after { width: 100%; }


/* ═══════════════════════════════════════════════
    SECCIÓN: NEWSLETTER
═══════════════════════════════════════════════ */
.newsletter {
    background: var(--hs-sand);
    padding: 110px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    border-top: 1px solid rgba(28, 28, 28, 0.07);
    border-bottom: 1px solid rgba(28, 28, 28, 0.07);
    position: relative;
    overflow: hidden;
}

/* Detalle decorativo de fondo */
.newsletter::before {
    content: 'HERA';
    position: absolute;
    right: -20px;
    bottom: -30px;
    font-family: var(--font-serif);
    font-size: 200px;
    font-weight: 700;
    color: rgba(28, 28, 28, 0.025);
    letter-spacing: -0.05em;
    pointer-events: none;
    line-height: 1;
    user-select: none;
}

.nl-texto { flex: 1; position: relative; z-index: 1; }

.nl-mini-titulo {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--hs-bronze);
    margin-bottom: 14px;
}

.nl-titulo {
    font-family: var(--font-serif);
    font-size: clamp(30px, 3.8vw, 52px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--hs-carbon);
}
.nl-titulo em {
    font-style: italic;
    color: var(--hs-bronze);
}
.nl-subtitulo {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 15px;
    font-weight: 400;
    color: rgba(28, 28, 28, 0.45);
    margin-top: 12px;
}

.nl-form-wrap {
    flex: 1;
    max-width: 460px;
    position: relative;
    z-index: 1;
}

.nl-form { display: flex; }

.nl-input {
    flex: 1;
    background: rgba(28, 28, 28, 0.04);
    border: 1px solid rgba(28, 28, 28, 0.14);
    border-right: none;
    padding: 18px 22px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--hs-carbon);
    outline: none;
    border-radius: 0;
    transition: border-color 0.3s ease;
}
.nl-input::placeholder { color: rgba(28, 28, 28, 0.28); }
.nl-input:focus { border-color: var(--hs-bronze); }

.nl-btn {
    background: var(--hs-carbon);
    color: var(--hs-pure-white);
    border: 1px solid var(--hs-carbon);
    padding: 18px 30px;
    font-family: var(--font-sans);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer !important;
    border-radius: 0;
    transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease,
                box-shadow 0.4s ease;
    white-space: nowrap;
}
.nl-btn:hover {
    background: var(--hs-copper);
    border-color: var(--hs-copper);
    color: var(--hs-carbon);
    box-shadow: 0 10px 25px rgba(194, 155, 111, 0.3);
}

.nl-disclaimer {
    font-size: 0.62rem;
    color: rgba(28, 28, 28, 0.38);
    margin-top: 14px;
    letter-spacing: 0.05em;
}


/* ═══════════════════════════════════════════════
    FOOTER
═══════════════════════════════════════════════ */
footer {
    background: var(--hs-carbon);
    padding: 100px 80px 44px;
}

.ft-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 72px;
}

.ft-logo { margin-bottom: 22px; }
.ft-logo svg { width: 46px; height: 46px; }

.ft-descripcion {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 13px;
    font-weight: 400;
    color: rgba(218, 221, 216, 0.35);
    line-height: 1.85;
    margin-bottom: 32px;
    max-width: 230px;
}

.ft-redes { display: flex; gap: 10px; }

.ft-red {
    width: 38px; height: 38px;
    border: 1px solid rgba(218, 221, 216, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(218, 221, 216, 0.32);
    transition: border-color 0.35s, background 0.35s, color 0.35s, box-shadow 0.35s;
}
.ft-red:hover {
    border-color: var(--hs-copper);
    background: var(--hs-copper);
    color: var(--hs-carbon);
    box-shadow: 0 0 18px rgba(194, 155, 111, 0.35);
}

.ft-col-titulo {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--hs-copper);
    margin-bottom: 26px;
    text-shadow: 0 0 10px rgba(194, 155, 111, 0.2);
}

.ft-links { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.ft-links a {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(218, 221, 216, 0.42);
    transition: color 0.3s, text-shadow 0.3s;
    letter-spacing: 0.04em;
}
.ft-links a:hover {
    color: var(--hs-pure-white);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.22);
}

.ft-bottom {
    border-top: 1px solid rgba(218, 221, 216, 0.07);
    padding-top: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ft-copyright {
    font-size: 0.6rem;
    color: rgba(218, 221, 216, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ft-pagos { display: flex; gap: 8px; }
.pago-badge {
    background: rgba(218, 221, 216, 0.03);
    border: 1px solid rgba(218, 221, 216, 0.07);
    padding: 6px 14px;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: rgba(218, 221, 216, 0.3);
    text-transform: uppercase;
    transition: border-color 0.3s, color 0.3s;
}
.pago-badge:hover {
    border-color: rgba(194, 155, 111, 0.3);
    color: var(--hs-copper);
}

/* ═══════════════════════════════════════════════
    RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 992px) {
    .test-grid { grid-template-columns: 1fr 1fr; }
    .ft-top    { grid-template-columns: 1fr 1fr; gap: 48px; }
}
@media (max-width: 768px) {
    body { cursor: auto; }
    .cursor-dot, .cursor-outline { display: none; }
    a, button { cursor: pointer !important; }

    .seccion    { padding: 80px 24px; }
    .test-grid  { grid-template-columns: 1fr; }
    .newsletter { flex-direction: column; padding: 72px 24px; gap: 48px; }
    .newsletter::before { font-size: 120px; }
    .nl-form-wrap { max-width: 100%; width: 100%; }
    footer  { padding: 72px 24px 36px; }
    .ft-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .ft-bottom { flex-direction: column; gap: 24px; text-align: center; }
}
@media (max-width: 480px) {
    .ft-top { grid-template-columns: 1fr; }
    .nl-form { flex-direction: column; }
    .nl-input { border-right: 1px solid rgba(28, 28, 28, 0.14); border-bottom: none; }
    .nl-btn   { width: 100%; padding: 16px; }
}