  :root {
    --rojo: #E03600;
    --tierra: #8b5e3c;
    --oro: #f9a204;
    --crema: #f5ede0;
    --verde: #2d4a2a;
    --blanco: #fdfaf5;
    --carbon: #1e160c;
    --texto: #3a2c1e;
    --termal: #3d7a7a;
  }
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
   html {
    scroll-behavior: smooth;
  }
   /* ── HERO ── */
  .hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
   .hero-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #000;
  }
   .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    will-change: opacity;
    backface-visibility: hidden;
    animation: heroSlider 18s infinite;
  }
   .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenburns 18s infinite;
  }
   .slide1,
  .slide1 img {
    animation-delay: 0s;
  }
   .slide2,
  .slide2 img {
    animation-delay: 6s;
  }
   .slide3,
  .slide3 img {
    animation-delay: 12s;
  }
   @keyframes heroSlider {
    0% {
      opacity: 0;
    }
     5% {
      opacity: 1;
    }
     33% {
      opacity: 1;
    }
     38% {
      opacity: 0;
    }
     100% {
      opacity: 0;
    }
  }
   @keyframes kenburns {
    0% {
      transform: scale(1.12);
    }
     100% {
      transform: scale(1);
    }
  }
   @keyframes slowzoom {
    to {
      transform: scale(1);
    }
  }
   .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(20, 12, 4, .3) 0%,
        rgba(20, 12, 4, .2) 40%,
        rgba(20, 12, 4, .75) 100%);
  }
   .hero-body {
    position: relative;
    text-align: center;
    padding: 2rem;
    animation: fadeup 1s .5s both;
  }
   @keyframes fadeup {
    from {
      opacity: 0;
      transform: translateY(32px);
    }
     to {
      opacity: 1;
      transform: none;
    }
  }
   .hero-eyebrow {
    font-size: .6rem;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--oro);
    margin-bottom: 1.2rem;
    display: block;
    font-weight: 400;
  }
   .hero h1 {
    font-family: 'Nunito', serif;
    font-size: clamp(3rem, 8vw, 4.5rem);
    color: #fff;
    line-height: .95;
    font-weight: 400;
  }
   .hero h1 span {
    font-style: italic;
    color: rgba(255, 255, 255, .7);
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    display: block;
    margin-top: .3rem;
  }
   .hero-sep {
    width: 50px;
    height: 1px;
    background: var(--oro);
    margin: 1.8rem auto;
    display: block;
  }
   .hero-desc {
    font-family: 'Open Sans', serif;
    font-size: clamp(0.8rem, 2.2vw, 1.1rem);
    color: rgba(245, 237, 224, .85);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 2.2rem;
    font-weight: 300;
  }
   .hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
   .btn-hero {
    padding: .85rem 2.2rem;
    font-size: .70rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    display: inline-block;
    border-radius: 7px;
  }
   .btn-hero.solid {
    background: var(--rojo);
    color: white;
    border: 2px solid var(--rojo);
  }
   .btn-hero.solid:hover {
    background: transparent;
    color: white;
    border-color: var(--blanco);
  }
   .btn-hero.ghost {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, .4);
  }
   .btn-hero.ghost:hover {
    border-color: var(--blanco);
    color: var(--rojo);
    background-color: var(--blanco);
  }
   .hero-chips {
    position: absolute;
    bottom: 2.5rem;
    right: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeup 1s 1.2s both;
  }
   .chip {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(245, 237, 224, .8);
    padding: .35rem .9rem;
    font-size: .58rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
  }
   /* ── SECTIONS ── */
  .sec {
    padding: 5.5rem 1.2rem;
  }
   .sec-inner {
    max-width: 1150px;
    margin: 0 auto;
  }
   .sec-label {
    font-size: .6rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--oro);
    font-weight: 600;
    display: block;
    margin-bottom: .7rem;
  }
   .sec-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    font-weight: 400;
  }
   .sec-title em {
    font-style: italic;
    color: var(--rojo);
  }
   .sec-bar {
    width: 48px;
    height: 2px;
    background: linear-gradient(to right, var(--rojo), transparent);
    margin: 1.2rem 0 1.8rem;
  }
   .sec-title.room {
    font-size: clamp(1.8rem, 3vw, 1rem);
    line-height: 1.05;
    font-weight: 400;
  }
   .sec-title.contacto {
    font-size: clamp(1.8rem, 3vw, 1.2rem);
    line-height: 1.05;
    font-weight: 400;
    margin-bottom: 15px;
  }
   /* ── ROOMS ── */
  .rooms-bg {
    background: var(--crema);
  }
  .hotel-bg {
    background: #F9F4ED;
  }
   .rooms-head {
    text-align: center;
    margin-bottom: 3rem;
  }
   .rooms-head .sec-bar {
    margin: 1.2rem auto 1.8rem;
  }
   .rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .hotel-info-grid{
  display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
   .room-card {
    background: white;
    overflow: hidden;
    transition: transform .35s, box-shadow .35s;
    border-bottom: 3px solid transparent;
  }
   .room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(30, 22, 12, .12);
    border-bottom-color: var(--rojo);
  }
   .room-photo {
    height: 220px;
    overflow: hidden;
    position: relative;
  }
   .room-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
  }
   .room-card:hover .room-photo img {
    transform: scale(1.06);
  }
   .room-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: .55rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 600;
    padding: .3rem .8rem;
    color: white;
  }
   .badge-single {
    background: var(--rojo);
  }
   .badge-double {
    background: var(--terra, #7a4e2a);
    background: var(--tierra);
  }
   .badge-family {
    background: var(--verde);
  }
   .room-body {
    padding: 1.6rem;
  }
   .room-body h3 {
    font-family: 'Nunito', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: .25rem;
  }
   .room-sub {
    font-family: 'Open Sans', serif;
    color: var(--termal);
    font-size: .85rem;
    margin-bottom: .8rem;
  }
   .room-desc {
    font-size: .75rem;
    line-height: 1.7;
    color: #5a4030;
    margin-bottom: 1.1rem;
  }
   .room-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    margin-bottom: 1.2rem;
  }
   .rtag {
    font-size: .60rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--crema);
    color: var(--tierra);
    padding: .22rem .6rem;
    border: 1px solid rgba(139, 94, 60, .15);
  }
   .room-footer {
    border-top: 1px solid rgba(139, 94, 60, .1);
    padding-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
   .room-price {
    font-family: 'Nunito', serif;
    font-size: 1.5rem;
    color: var(--oro);
  }
   .room-price small {
    font-family: 'Josefin Sans', sans-serif;
    font-size: .6rem;
    color: #9a8060;
    font-weight: 300;
  }
   .btn-book.btn-book-room {
    padding: 5px 12px;
  }
   /* ── TERMAS ── */
  .termas-sec {
    background: var(--carbon);
    color: var(--crema);
    padding: 0;
    overflow: hidden;
  }
   .termas-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 550px;
  }
   .termas-photo {
    position: relative;
    overflow: hidden;
  }
   .termas-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(.85);
    transition: transform .6s;
  }
   .termas-photo:hover img {
    transform: scale(1.04);
  }
   .termas-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, var(--carbon) 100%);
  }
   .termas-content {
    padding: 4rem 3rem 4rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
   .termas-content .sec-bar {
    background: linear-gradient(to right, var(--termal), transparent);
  }
   .termas-content .sec-title {
    color: white;
  }
   .termas-content .sec-title em {
    color: var(--termal);
    font-style: italic;
  }
   .termas-content p {
    font-family: 'Open Sans', serif;
    font-size: 0.95rem;
    line-height: 1.9;
    color: rgba(245, 237, 224, .75);
    margin-bottom: 1rem;
    font-weight: 300;
  }
   .termas-dist {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    background: rgba(61, 122, 122, .2);
    border: 1px solid rgba(61, 122, 122, .4);
    padding: .65rem 1.4rem;
    color: var(--termal);
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-top: 1rem;
    font-weight: 600;
  }
   .termas-list {
    list-style: none;
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
  }
   .termas-list li {
    font-size: .7rem;
    color: rgba(245, 237, 224, .6);
    display: flex;
    align-items: center;
    gap: .5rem;
    letter-spacing: .06em;
  }
   .termas-list li::before {
    content: '◆';
    color: var(--termal);
    font-size: .45rem;
  }
   /* ── CONTACT ── */
  .contact-sec {
    background: var(--verde);
    color: var(--crema);
  }
   .contact-head {
    text-align: center;
    margin-bottom: 3rem;
  }
   .contact-head .sec-title {
    color: white;
  }
   .contact-head .sec-bar {
    margin: 1.2rem auto 0;
    background: linear-gradient(to right, var(--oro), transparent);
  }
   .contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
   .contact-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 2rem 1.8rem;
    transition: background .3s;
  }
   .contact-card:hover {
    background: rgba(255, 255, 255, .1);
  }
   .contact-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: block;
  }
   .contact-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--oro);
    margin-bottom: .9rem;
    letter-spacing: .04em;
  }
   .contact-card p,
  .contact-card a {
    font-size: .75rem;
    line-height: 2;
    color: rgba(245, 237, 224, .65);
    text-decoration: none;
    display: block;
    font-weight: 300;
    letter-spacing: .04em;
  }
   .contact-card a:hover {
    color: var(--oro);
  }
   .contact-card .highlight {
    color: rgba(245, 237, 224, .9);
    font-weight: 400;
  }
   /* Horarios table */
  .horarios {
    width: 100%;
    border-collapse: collapse;
    margin-top: .5rem;
  }
   .horarios td {
    font-size: .72rem;
    padding: .45rem 0;
    color: rgba(245, 237, 224, .65);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    font-weight: 300;
    letter-spacing: .04em;
  }
   .horarios td:last-child {
    text-align: right;
    color: rgba(245, 237, 224, .9);
    font-weight: 400;
  }
   /* WhatsApp floating */
  .wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 200;
    background: #25d366;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    transition: transform .2s, box-shadow .2s;
  }
   .wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, .5);
  }

   @media(max-width:900px) {
    nav {
      padding: .9rem 1.2rem;
    }
     .nav-links {
      display: none;
    }
     .rooms-grid {
      grid-template-columns: 1fr;
    }
    .hotel-info-grid{
      grid-template-columns: 1fr;
    }
     .termas-inner {
      grid-template-columns: 1fr;
    }
     .termas-photo {
      height: 280px;
    }
     .termas-photo::after {
      display: none;
    }
     .contact-grid {
      grid-template-columns: 1fr;
    }
  }
   .tres-cols-sec {
    background: #f9f4ed;
    padding: 5rem 2rem;
    border-top: 3px solid rgba(193, 58, 42, .08);
  }
   .tres-cols-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
   .col-card {
    background: #fff;
    overflow: hidden;
    transition: transform .35s, box-shadow .35s;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
  }
   .col-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(30, 22, 12, .12);
  }
   .col-photo {
    height: 230px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
  }
   .col-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
  }
   .col-card:hover .col-photo img {
    transform: scale(1.06);
  }
   .col-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: .57rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 700;
    padding: .28rem .8rem;
    color: white;
    font-family: 'Josefin Sans', sans-serif;
  }
   .badge-aloj {
    background: #c13a2a;
  }
   .badge-rest {
    background: #8b5e3c;
  }
   .badge-mini {
    background: #2d4a2a;
  }
   .col-body {
    padding: 1.7rem 1.6rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
   .col-icon {
    font-size: 1.6rem;
    margin-bottom: .5rem;
  }
   .col-body h3 {
    font-family: 'Nunito', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #1e160c;
    margin-bottom: .4rem;
  }
   .col-intro {
    font-family: 'Open Sans', serif;
    font-size: .82rem;
    line-height: 1.75;
    color: #6a5030;
    margin-bottom: 1rem;
    font-weight: 400;
  }
   .col-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .38rem;
    margin-bottom: 1.1rem;
    flex: 1;
  }
   .col-list li {
    font-family: "Open Sans";
    font-size: .73rem;
    color: #5a4030;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    letter-spacing: .03em;
  }
   .col-list li em {
    color: #8b5e3c;
    font-style: italic;
  }
   .list-dot {
    color: #c9973a;
    font-size: .45rem;
    margin-top: .35rem;
    flex-shrink: 0;
  }
   .mini-section-title {
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 700;
    color: #8b5e3c;
    margin-bottom: .5rem;
    padding-bottom: .3rem;
    border-bottom: 1px solid rgba(139, 94, 60, .15);
  }
   .col-horario {
    background: #f5ede0;
    padding: .8rem 1rem;
    margin-bottom: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: .3rem;
  }
   .horario-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .7rem;
    color: #6a5030;
    letter-spacing: .04em;
  }
   .horario-row strong {
    color: #1e160c;
    font-weight: 600;
  }
   .col-btn {
    display: inline-block;
    text-align: center;
    background: #c13a2a;
    color: white;
    padding: .65rem 1.2rem;
    font-size: .63rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    transition: background .25s;
    margin-top: auto;
  }
   .col-btn:hover {
    background: #a02d1f;
    color: #fff;
  }
   .col-btn-rest {
    background: #8b5e3c;
  }
   .col-btn-rest:hover {
    background: #6a4528;
  }
   /* ── PICNIC ── */
  :root {
    --verde-picnic: #3a6b35;
  }
   .picnic-sec {
    background: #fff;
    padding: 0;
    overflow: hidden;
  }
   .picnic-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    align-items: stretch;
    padding-top: 35px;
    padding-bottom: 35px;
  }
   /* Slider */
  .picnic-slider-wrap {
    position: relative;
    overflow: hidden;
    min-height: 540px;
  }
   .picnic-slider {
    position: relative;
    width: 100%;
    height: 100%;
  }
   .pslide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .7s ease;
    pointer-events: none;
  }
   .pslide.active {
    opacity: 1;
    pointer-events: auto;
  }
   .pslide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
   .pslide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 22, 12, .45);
    color: white;
    border: none;
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
  }
   .pslide-btn:hover {
    background: rgba(193, 58, 42, .8);
  }
   .pslide-prev {
    left: 1rem;
  }
   .pslide-next {
    right: 1rem;
  }
   .pslide-dots {
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .5rem;
  }
   .pdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    cursor: pointer;
    transition: background .3s, transform .3s;
    border: none;
  }
   .pdot.active {
    background: #fff;
    transform: scale(1.25);
  }
   /* Picnic content */
  .picnic-content {
    padding: 4rem 3.5rem 4rem 3rem;
    background: #f5ede0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
   .picnic-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.05;
    color: #1e160c;
    margin-bottom: .2rem;
  }
   .picnic-title em {
    font-style: italic;
    color: var(--verde-picnic);
  }
  .hotel-head {
    text-align: start;
    margin-bottom: 3rem;
}
  .hotel-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.05;
    color: #1e160c;
    margin-bottom: .2rem;
  }
  .hotel-label {
     font-size: .6rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--oro);
    font-weight: 600;
    display: block;
    margin-bottom: .7rem;
}
  .hotel-title em {
    font-style: italic;
    color: var(--oro);
  }
  .hotel-bar {
    width: 48px;
    height: 2px;
    background: linear-gradient(to right, var(--oro), transparent);
    margin: 1.1rem 0 1.5rem;
}
   .picnic-bar {
    width: 48px;
    height: 2px;
    background: linear-gradient(to right, var(--verde-picnic), transparent);
    margin: 1.1rem 0 1.5rem;
  }
   .picnic-desc {
    font-family: 'Open Sans', serif;
    font-size: 0.95rem;
    line-height: 1.85;
    color: #5a4030;
    margin-bottom: .9rem;
    font-weight: 400;
  }
   .picnic-highlight {
    background: rgba(61, 122, 122, .08);
    border-left: 3px solid #3d7a7a;
    padding: 1rem 1.2rem;
    display: flex;
    gap: .9rem;
    align-items: flex-start;
    margin: 1.2rem 0;
  }
   .ph-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
  }
   .picnic-highlight strong {
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #3d7a7a;
    display: block;
    margin-bottom: .25rem;
    font-weight: 700;
  }
   .picnic-highlight p {
    font-size: .74rem;
    color: #6a5030;
    line-height: 1.6;
  }
   .picnic-includes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem .8rem;
    margin-bottom: 1.8rem;
  }
   .pi-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .71rem;
    color: #5a4030;
    letter-spacing: .04em;
  }
   .pi-item>span:first-child {
    font-size: 1rem;
  }
   .picnic-cta {
    display: inline-block;
    background: var(--verde-picnic);
    color: white;
    padding: .85rem 2rem;
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    transition: background .25s;
    align-self: flex-start;
  }
   .picnic-cta:hover {
    background: #2a5025;
    color: white;
  }
   .habitaciones-cta {
    display: inline-block;
    background: #E03600;
    color: white;
    padding: .85rem 2rem;
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    transition: background .25s;
    align-self: flex-start;
  }
   .habitaciones-cta:hover {
    background: #bd2c00;
    color: white;
  }
   .top-habitacion {
    background-color: #000000e8;
    height: 14vh;
  }
   .galeria-top {
    margin-top: 12px;
  }
   /* Footer */
   .footer-main {
    max-width: 1150px;
    margin: 0 auto;
    padding: 3.5rem 2rem 2.5rem;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 3rem;
  }
   .footer-brand .fname {
    font-size: 1.35rem;
    color: var(--crema);
    letter-spacing: .04em;
    display: block;
    margin-bottom: .15rem;
  }
   .footer-brand .fsub {
    font-size: .58rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--oro);
    font-weight: 300;
    display: block;
    margin-bottom: 1.1rem;
  }
   .footer-brand p {
    line-height: 1.85;
    color: rgba(245, 237, 224, .4);
    font-weight: 300;
    max-width: 280px;
  }
   .footer-contact {
    margin-top: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: .45rem;
  }
   .footer-contact a,
  .footer-contact span {
    font-size: .8rem;
    color: rgba(245, 237, 224, .45);
    text-decoration: none;
    letter-spacing: .05em;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: .5rem;
  }
   .footer-contact a:hover {
    color: var(--oro);
  }
   .footer-contact .fci {
    font-size: .85rem;
  }
   .footer-col h4 {
    font-size: .6rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--oro);
    font-weight: 700;
    margin-bottom: 1.1rem;
    padding-bottom: .6rem;
    border-bottom: 1px solid rgba(201, 151, 58, .2);
  }
   .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .55rem;
  }
   .footer-links li a {
    font-size: .8rem;
    color: rgba(245, 237, 224, .4);
    text-decoration: none;
    letter-spacing: .08em;
    transition: color .2s, padding-left .2s;
    display: flex;
    align-items: center;
    gap: .5rem;
  }
   .footer-links li a::before {
    content: '';
    width: 12px;
    height: 1px;
    background: rgba(201, 151, 58, .35);
    flex-shrink: 0;
    transition: width .2s, background .2s;
  }
   .footer-links li a:hover {
    color: var(--crema);
    padding-left: .3rem;
  }
   .footer-links li a:hover::before {
    width: 18px;
    background: var(--oro);
  }
   .footer-sched {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    margin-bottom: 1.2rem;
  }
   .fsched-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
   .fsched-row span {
    font-size: .8rem;
    color: rgba(245, 237, 224, .35);
    letter-spacing: .06em;
  }
   .fsched-row strong {
    font-size: .8rem;
    color: rgba(245, 237, 224, .6);
    font-weight: 500;
  }
   .footer-bar {
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding: 1.2rem 0rem;
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .8rem;
    
  }
   .footer-bar p {
    font-size: 14px;
    color: #fff;
    letter-spacing: .05em;
    margin-bottom: 0px;
  }
   .footer-bar a {
    color: rgba(201, 151, 58, .5);
    text-decoration: none;
    transition: color .2s;
  }
   .footer-bar a:hover {
    color: var(--oro);
  }
   .footer-socials {
    display: flex;
    gap: .8rem;
  }
   .footer-socials a {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: rgba(245, 237, 224, .35);
    text-decoration: none;
    transition: all .2s;
    border-radius: 2px;
  }
   .footer-socials a:hover {
    border-color: var(--oro);
    color: var(--oro);
  }
   .recoleta-explore {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
     width: 100%;
     margin-top: 25px;
}
 /* =========================================================
   TARJETA
========================================================= */
 .recoleta-explore-card {
    position: relative;
     display: block;
     aspect-ratio: 1 / 1;
     overflow: hidden;
     border-radius: 12px;
     text-decoration: none;
     color: #ffffff;
     background: #222;
     transition: 
        transform .35s ease,
        box-shadow .35s ease;
}
 /* =========================================================
   IMAGEN
========================================================= */
 .recoleta-explore-card img {
    position: absolute;
     width: 100%;
    height: 100%;
     top: 0;
    left: 0;
     object-fit: cover;
     transition: transform .6s ease;
}
 /* =========================================================
   OVERLAY
========================================================= */
 .recoleta-explore-overlay {
    position: absolute;
     inset: 0;
     background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, .15) 10%,
            rgba(0, 0, 0, .15) 35%,
            rgba(0, 0, 0, .75) 100%
        );
}
 /* =========================================================
   CONTENIDO
========================================================= */
 .recoleta-explore-content {
    position: relative;
     z-index: 2;
     display: flex;
    flex-direction: column;
    justify-content: space-between;
     height: 100%;
     padding: 16px;
}
 /* =========================================================
   NÚMERO SUPERIOR
========================================================= */
 .recoleta-explore-number {
    display: inline-flex;
     align-items: center;
    justify-content: center;
     width: 35px;
    height: 35px;
     border: 1px solid rgba(255, 255, 255, .7);
     border-radius: 50%;
     font-size: 11px;
     font-weight: 600;
     letter-spacing: 1px;
}
 /* =========================================================
   CONTENIDO INFERIOR
========================================================= */
 .recoleta-explore-bottom {
    display: flex;
    flex-direction: column;
     align-items: flex-start;
}
 .recoleta-explore-content  .top-content.mdi {
    margin-bottom: 8px;
     font-size: 25px;
     color: #ffffff;
     text-align: start;
}
 .recoleta-explore-bottom h4 {
    margin: 0 0 4px;
     color: #ffffff;
     font-size: 14px;
     font-weight: 600;
     line-height: 1.2;
}
 .recoleta-explore-link {
    display: flex;
    align-items: center;
     gap: 4px;
     color: #ffffff;
     font-size: 12px;
     font-weight: 400;
}
 .recoleta-explore-link .mdi {
    font-size: 16px;
     transition: transform .3s ease;
}
  .recoleta-explore-card:hover {
    transform: translateY(-4px);
     box-shadow:
        0 15px 30px rgba(0, 0, 0, .18);
     color: #ffffff;
}
 .recoleta-explore-card:hover img {
    transform: scale(1.08);
}
 .recoleta-explore-card:hover .recoleta-explore-link .mdi {
    transform: translateX(5px);
}
/* =====================================================
   MODAL GALERÍA
===================================================== */
 .gallery-modal {
    border: 0;
    border-radius: 10px;
    overflow: hidden;
}
 .gallery-modal-header {
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
}
 .gallery-modal-label {
    display: block;
     color: #E03600;
     font-size: 9px;
    font-weight: 600;
     letter-spacing: 2px;
}
 .gallery-modal-header .modal-title {
    margin: 3px 0 0;
     font-size: 20px;
    font-weight: 500;
}
 .gallery-modal .modal-body {
    padding: 14px;
}
 /* =====================================================
   GALERÍA PRINCIPAL
===================================================== */
 .habitaciones-main-gallery {
    margin-bottom: 10px;
}
 .gallery-main-image {
    position: relative;
     width: 100%;
    height: 60vh;
     max-height: 560px;
    min-height: 350px;
     overflow: hidden;
     border-radius: 8px;
     background: #111;
}
 .gallery-main-image img {
    width: 100%;
    height: 100%;
     display: block;
     object-fit: cover;
}
 /* =====================================================
   DEGRADADO INFERIOR
===================================================== */
 .gallery-main-image::after {
    content: "";
     position: absolute;
     left: 0;
    right: 0;
    bottom: 0;
     height: 120px;
     background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, .75),
            rgba(0, 0, 0, 0)
        );
     pointer-events: none;
}
 /* =====================================================
   INFORMACIÓN SOBRE LA FOTO
===================================================== */
 .gallery-image-info {
    position: absolute;
     z-index: 5;
     left: 20px;
    right: 20px;
    bottom: 16px;
     display: flex;
     align-items: center;
    justify-content: space-between;
     color: #ffffff;
}
 /* TÍTULO */
 .gallery-image-title {
    font-size: 13px;
     font-weight: 500;
     letter-spacing: .2px;
     text-shadow:
        0 2px 5px rgba(0, 0, 0, .6);
}
 /* CONTADOR */
 .gallery-counter {
    font-size: 12px;
     font-weight: 500;
     letter-spacing: .5px;
     text-shadow:
        0 2px 5px rgba(0, 0, 0, .6);
}
 /* =====================================================
   FLECHAS
===================================================== */
 .habitaciones-main-gallery .splide__arrow {
    width: 42px;
    height: 42px;
     background: rgba(255, 255, 255, .92);
     opacity: 1;
     border-radius: 50%;
}
 .habitaciones-main-gallery .splide__arrow svg {
    width: 14px;
    height: 14px;
     fill: #333;
}
 .habitaciones-main-gallery .splide__arrow--prev {
    left: 14px;
}
 .habitaciones-main-gallery .splide__arrow--next {
    right: 14px;
}
 /* =====================================================
   MINIATURAS
===================================================== */
 .habitaciones-thumbs-gallery {
    margin-top: 4px;
}
 .habitaciones-thumbs-gallery .splide__slide {
    height: 68px;
     overflow: hidden;
     border-radius: 5px;
     cursor: pointer;
     opacity: .65;
     border: 2px solid transparent;
     transition:
        opacity .25s ease,
        border-color .25s ease;
}
 .habitaciones-thumbs-gallery .splide__slide img {
    width: 100%;
    height: 100%;
     display: block;
     object-fit: cover;
}
 /* MINIATURA ACTIVA */
 .habitaciones-thumbs-gallery .splide__slide.is-active {
    opacity: 1;
     border-color: #E03600;
}
 /* =====================================================
   OCULTAMOS FLECHAS DE MINIATURAS
===================================================== */
 .habitaciones-thumbs-gallery .splide__arrows {
    display: none;
}
/* CONTENEDOR PRINCIPAL DE LA GALERÍA */
.habitaciones-main-gallery,
.habitaciones-main-gallery .splide__track,
.habitaciones-main-gallery .splide__list {
    border-radius: 8px;
}
/* El track debe ocultar cualquier imagen durante el movimiento */
.habitaciones-main-gallery .splide__track {
    overflow: hidden;
}
/* Cada slide */
.habitaciones-main-gallery .splide__slide {
    overflow: hidden;
}
/* Imagen principal */
.gallery-main-image {
    overflow: hidden;
    border-radius: 8px;
}
     @media (max-width: 991px) {
    .tres-cols-inner {
      grid-template-columns: 1fr;
    }
     .picnic-grid {
      grid-template-columns: 1fr;
    }
     .picnic-slider-wrap {
      min-height: 320px;
    }
     .picnic-content {
      padding: 2.5rem 1.5rem;
    }
     .top-habitacion {
      background-color: #000000e8;
      height: 7vh;
    }
     .galeria-top {
      margin-top: 5px;
    }
     .footer-main {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 2.5rem 1.5rem;
    }
     .footer-bar {
      flex-direction: column;
      text-align: center;
    }
    .recoleta-explore {
        gap: 12px;
    }
     .recoleta-explore-content {
        padding: 13px;
    }
     .recoleta-explore-bottom h4 {
        font-size: 16px;
    }
     .recoleta-explore-bottom > .mdi {
        font-size: 22px;
    }
   }
@media (max-width: 767.98px) {
     .gallery-modal-header {
        padding: 12px 14px;
    }
     .gallery-modal-header .modal-title {
        font-size: 17px;
    }
     .gallery-modal .modal-body {
        padding: 8px;
    }
     .gallery-main-image {
        height: 48vh;
         min-height: 280px;
         border-radius: 6px;
    }
     .gallery-image-info {
        left: 14px;
        right: 14px;
        bottom: 12px;
    }
     .gallery-image-title {
        font-size: 11px;
    }
     .gallery-counter {
        font-size: 11px;
    }
     .habitaciones-main-gallery .splide__arrow {
        width: 36px;
        height: 36px;
    }
     .habitaciones-main-gallery .splide__arrow--prev {
        left: 8px;
    }
     .habitaciones-main-gallery .splide__arrow--next {
        right: 8px;
    }
     /* Miniaturas */
     .habitaciones-thumbs-gallery .splide__slide {
        height: 50px;
    }
    .habitaciones-main-gallery,
    .habitaciones-main-gallery .splide__track,
    .habitaciones-main-gallery .splide__list,
    .gallery-main-image {
        border-radius: 6px;
    }
 }
    @media (max-width: 575.98px) {
     .recoleta-explore {
        grid-template-columns: repeat(3, 1fr);
         gap: 8px;
         margin-top: 20px;
    }
     .recoleta-explore-card {
        border-radius: 8px;
    }
     .recoleta-explore-content {
        padding: 8px;
    }
     .recoleta-explore-number {
        width: 24px;
        height: 24px;
         font-size: 8px;
    }
     .recoleta-explore-bottom > .mdi {
        margin-bottom: 4px;
         font-size: 18px;
    }
     .recoleta-explore-bottom h4 {
        margin-bottom: 3px;
         font-size: 11px;
         line-height: 1.15;
    }
     .recoleta-explore-link {
        font-size: 9px;
    }
     .recoleta-explore-link .mdi {
        font-size: 12px;
    }
    .recoleta-explore-content .top-content.mdi{
      font-size: 16px;
    }
 }