/* ===== COMPLEJO ALBATRO · Claromecó ===== */
/* Dos colores de marca: TEAL/CIAN (fondo) + DORADO (cards y acentos). Sin blanco de fondo. */

:root{
  --teal:#3f978c;
  --teal-mid:#4aa79a;
  --teal-deep:#2c6b63;
  --teal-dark:#123833;
  --teal-darker:#0d2a26;

  --bg:#2f8074;            /* fondo principal: cian un poco más oscuro */
  --bg-alt:#276b62;        /* alterna secciones */

  --gold:#e3c04f;
  --gold-soft:#ead487;

  --txt:#eef8f5;           /* texto claro sobre teal */
  --txt-soft:#cfe6e0;
  --white:#ffffff;

  --fb:'Century Gothic','Jost','Questrial','Segoe UI',system-ui,sans-serif;
  --fs:'Great Vibes', cursive;

  --wrap:1180px;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:var(--fb);
  color:var(--txt);
  background:var(--bg);
  line-height:1.65;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{font-family:var(--fb);font-weight:600;line-height:1.15;letter-spacing:.01em;text-wrap:balance;color:var(--white)}
section{scroll-margin-top:74px}

.script-accent{
  font-family:var(--fs);
  color:var(--gold);
  font-size:clamp(1.7rem,3.4vw,2.5rem);
  display:block;line-height:1.1;margin-bottom:.15em;
}

/* ---- Botones ---- */
.btn{
  display:inline-flex;align-items:center;gap:.5em;justify-content:center;
  font-family:var(--fb);font-weight:500;font-size:.95rem;
  padding:.85em 1.7em;border-radius:999px;border:2px solid transparent;
  cursor:pointer;transition:.25s ease;letter-spacing:.03em;
}
.btn-gold{background:var(--gold);color:var(--teal-dark);border-color:var(--gold)}
.btn-gold:hover{background:transparent;color:var(--gold);transform:translateY(-2px)}
.btn-teal{background:var(--teal-dark);color:#fff;border-color:var(--teal-dark)}
.btn-teal:hover{background:transparent;color:var(--gold);border-color:var(--gold);transform:translateY(-2px)}
.btn-ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.6)}
.btn-ghost:hover{background:#fff;color:var(--teal-dark);transform:translateY(-2px)}
.ic-inline{display:inline-flex}

/* ===== NAV ===== */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  display:flex;align-items:center;justify-content:space-between;
  padding:.6rem clamp(1rem,4vw,2.5rem);
  background:rgba(13,42,38,.9);
  backdrop-filter:blur(8px);
  box-shadow:0 2px 18px rgba(0,0,0,.18);
}
.nav-logo img{height:38px;width:auto}
.nav-links{display:flex;align-items:center;gap:1.6rem}
.nav-links a{font-size:.95rem;font-weight:500;color:var(--txt);transition:.2s}
.nav-links a:hover{color:var(--gold)}
.nav-cta{background:var(--gold);color:var(--teal-dark)!important;padding:.5em 1.2em;border-radius:999px}
.nav-cta:hover{filter:brightness(1.05)}
.nav-burger{display:none;background:none;border:0;flex-direction:column;gap:5px;cursor:pointer;padding:6px}
.nav-burger span{width:26px;height:2px;background:var(--gold);border-radius:2px;transition:.3s}

/* ===== HERO — mar animado + logo flotante ===== */
.hero{
  position:relative;min-height:100vh;
  display:flex;align-items:center;justify-content:center;text-align:center;
  background:linear-gradient(165deg,var(--teal-mid) 0%,var(--teal) 42%,var(--teal-deep) 100%);
  color:#fff;overflow:hidden;padding:6rem 1.5rem 5rem;
}
.hero::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 30% 18%,rgba(255,255,255,.16),transparent 55%);pointer-events:none}
.sea{position:absolute;inset:0;overflow:hidden;pointer-events:none}
.wave{position:absolute;left:0;right:0;bottom:0;height:220px;background-repeat:repeat-x;background-position:0 bottom;background-size:1440px 220px;will-change:transform}
.wave1{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='220' viewBox='0 0 1440 220'%3E%3Cpath fill='%23ffffff' fill-opacity='0.10' d='M0,110 C240,170 480,50 720,110 C960,170 1200,50 1440,110 L1440,220 L0,220 Z'/%3E%3C/svg%3E");animation:waveX 22s linear infinite}
.wave2{height:180px;background-size:1440px 180px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='180' viewBox='0 0 1440 180'%3E%3Cpath fill='%23ffffff' fill-opacity='0.14' d='M0,90 C288,150 576,30 864,90 C1152,150 1296,60 1440,90 L1440,180 L0,180 Z'/%3E%3C/svg%3E");animation:waveX 15s linear infinite reverse}
.wave3{height:140px;background-size:1440px 140px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='140' viewBox='0 0 1440 140'%3E%3Cpath fill='%23eaf5f2' fill-opacity='0.22' d='M0,80 C360,120 720,40 1080,80 C1260,100 1350,70 1440,80 L1440,140 L0,140 Z'/%3E%3C/svg%3E");animation:waveX 30s linear infinite}
@keyframes waveX{from{transform:translateX(0)}to{transform:translateX(-1440px)}}

.hero-inner{position:relative;z-index:3;max-width:820px;perspective:1000px}
.hero-pre{font-family:var(--fs);font-size:clamp(1.9rem,4.4vw,3rem);color:var(--gold-soft);line-height:1}
.hero-logo{position:relative;width:min(560px,82vw);margin:.05em auto .35em;filter:drop-shadow(0 18px 22px rgba(0,0,0,.4))}
.hero-logo-img{width:100%;display:block;animation:floaty 6s ease-in-out infinite}
@keyframes floaty{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
/* olas por letra: cada tira sube/baja con retraso => onda que viaja */
.hero-logo.waved .hero-logo-img{opacity:0}
.hero-logo .strip{position:absolute;top:0;left:0;width:100%;height:100%;background-repeat:no-repeat;background-position:center;background-size:contain;animation:letterWave 4.2s ease-in-out infinite}
@keyframes letterWave{0%,100%{transform:translateY(0)}50%{transform:translateY(-6px)}}
@media(prefers-reduced-motion:reduce){.hero-logo-img,.hero-logo .strip{animation:none}}
.hero-place{font-size:clamp(1.1rem,3vw,1.7rem);letter-spacing:.55em;text-transform:uppercase;padding-left:.55em;color:#fff;opacity:.95;font-weight:400}
.hero-tag{margin-top:1.2rem;font-size:clamp(1rem,2vw,1.25rem);font-weight:300}
.hero-tag span{color:var(--gold-soft);font-weight:500}
.hero-btns{margin-top:2rem;display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}
.hero-foam{position:absolute;left:0;right:0;bottom:-1px;line-height:0;z-index:2}
.hero-foam svg{width:100%;height:100px}
.hero-foam path{fill:var(--bg)}
@media(prefers-reduced-motion:reduce){.wave,.hero-logo{animation:none}}

/* mini-hero para páginas internas */
.subhero{
  position:relative;padding:8rem 1.5rem 3rem;text-align:center;
  background:linear-gradient(165deg,var(--teal) 0%,var(--teal-deep) 100%);
  overflow:hidden;
}
.subhero .sea{opacity:.9}
.subhero-inner{position:relative;z-index:3}
.subhero h1{font-size:clamp(2rem,5vw,3.2rem)}
.subhero .script-accent{margin-bottom:0}
.subhero-foam{position:absolute;left:0;right:0;bottom:-1px;line-height:0;z-index:2}
.subhero-foam svg{width:100%;height:70px}
.subhero-foam path{fill:var(--bg)}

/* ===== INTRO / secciones de texto ===== */
.intro{max-width:760px;margin:0 auto;padding:5rem 1.5rem 3rem;text-align:center}
.intro h2{font-size:clamp(1.8rem,4vw,2.7rem);margin-bottom:.5rem}
.intro p{font-size:1.05rem;color:var(--txt-soft)}

.sec-head{text-align:center;max-width:720px;margin:0 auto 2.6rem}
.sec-head h2{font-size:clamp(1.8rem,4vw,2.7rem)}
.sec-sub{color:var(--txt-soft);margin-top:.6rem}

/* ===== CARD DORADA (base para cabañas y comodidades) ===== */
.card-gold{
  background:var(--gold);color:var(--teal-dark);
  border-radius:20px;transition:.3s;
}
.card-gold:hover{background:var(--teal-dark);color:var(--gold-soft);transform:translateY(-6px);box-shadow:0 18px 44px rgba(0,0,0,.28)}

/* ===== CABAÑAS (grid, se usa en la página aparte) ===== */
.cabanas{padding:4rem clamp(1rem,4vw,2.5rem) 5rem;max-width:var(--wrap);margin:0 auto}
.cab-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.6rem}
.cab-card{
  background:var(--gold);color:var(--teal-dark);
  border-radius:20px;overflow:hidden;display:flex;flex-direction:column;
  transition:.3s;box-shadow:0 10px 30px rgba(0,0,0,.14);position:relative;
}
.cab-card:hover{background:var(--teal-dark);transform:translateY(-6px);box-shadow:0 18px 44px rgba(0,0,0,.3)}
.cab-body{padding:1.6rem 1.6rem 1.7rem;display:flex;flex-direction:column;flex:1}
.cab-cap{
  align-self:flex-start;background:var(--teal-dark);color:var(--gold-soft);
  font-weight:600;font-size:.8rem;padding:.3em 1em;border-radius:999px;margin-bottom:.7rem;transition:.3s;
}
.cab-card:hover .cab-cap{background:var(--gold);color:var(--teal-dark)}
.cab-body h3{font-size:1.55rem;color:var(--teal-dark);transition:.3s}
.cab-card:hover .cab-body h3{color:var(--gold-soft)}
.cab-count{color:var(--teal-deep);font-weight:600;font-size:.9rem;margin-bottom:.9rem;transition:.3s}
.cab-card:hover .cab-count{color:var(--gold)}
.cab-body ul{list-style:none;margin-bottom:1.3rem;flex:1}
.cab-body li{position:relative;padding-left:1.4em;margin-bottom:.4em;font-size:.93rem;color:#3f3410;transition:.3s}
.cab-card:hover .cab-body li{color:var(--txt-soft)}
.cab-body li::before{content:"✦";position:absolute;left:0;color:var(--teal-deep);font-size:.8em;top:.2em;transition:.3s}
.cab-card:hover .cab-body li::before{color:var(--gold)}
.cab-link{align-self:flex-start;color:var(--teal-dark);font-weight:600;border-bottom:2px solid var(--teal-dark);padding-bottom:2px;transition:.2s}
.cab-card:hover .cab-link{color:var(--gold);border-color:var(--gold)}
.cab-featured{outline:3px solid var(--teal-dark);outline-offset:-3px}

/* lista de comodidades con ícono por línea (página de cabañas) */
.amen{list-style:none;display:grid;gap:.55rem;margin-bottom:1.3rem;flex:1}
.amen li{display:flex;gap:.6rem;align-items:center;font-size:.93rem;color:#3f3410;transition:.3s}
.cab-card:hover .amen li{color:var(--txt-soft)}
.amen .li-ic{flex:0 0 auto;width:22px;height:22px;color:var(--teal-deep);display:inline-flex;transition:.3s}
.cab-card:hover .amen .li-ic{color:var(--gold)}
.amen .li-ic svg{width:100%;height:100%;fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.presta{max-width:var(--wrap)}

/* teaser en la landing */
.cab-teaser{max-width:var(--wrap);margin:0 auto;padding:4rem clamp(1rem,4vw,2.5rem);text-align:center}
.cab-teaser .card-gold{padding:2.6rem 2rem;display:flex;flex-direction:column;align-items:center;gap:.8rem}
.cab-teaser h2{color:var(--teal-dark);font-size:clamp(1.8rem,4vw,2.6rem);transition:.3s}
.cab-teaser .card-gold:hover h2{color:var(--gold-soft)}
.cab-teaser p{color:var(--teal-deep);max-width:520px;transition:.3s}
.cab-teaser .card-gold:hover p{color:var(--txt-soft)}

/* ===== COMODIDADES (cards doradas) ===== */
.comod{background:var(--bg-alt);padding:5rem clamp(1rem,4vw,2.5rem)}
.comod-grid{max-width:960px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:1.3rem;justify-items:stretch}
@media(max-width:820px){.comod-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:460px){.comod-grid{grid-template-columns:1fr;max-width:300px}}
.comod-item{
  background:var(--gold);color:var(--teal-dark);
  border-radius:16px;padding:1.7rem 1.2rem;text-align:center;transition:.3s;
}
.comod-item:hover{background:var(--teal-dark);transform:translateY(-5px);box-shadow:0 14px 34px rgba(0,0,0,.28)}
.comod-ic{display:inline-flex;width:40px;height:40px;margin-bottom:.6rem;color:var(--teal-dark);transition:.3s}
.comod-ic svg{width:100%;height:100%;fill:none;stroke:currentColor;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
.comod-item:hover .comod-ic{color:var(--gold-soft)}
.comod-item h4{font-weight:600;color:var(--teal-dark);margin-bottom:.2rem;font-size:1.02rem;transition:.3s}
.comod-item:hover h4{color:var(--gold-soft)}
.comod-item p{font-size:.86rem;color:var(--teal-deep);transition:.3s}
.comod-item:hover p{color:var(--txt-soft)}

/* ===== PESTAÑAS (cabañas por capacidad) ===== */
.tabs{display:flex;flex-wrap:wrap;justify-content:center;gap:.6rem;margin:0 auto 2.4rem;max-width:820px}
.tab-btn{background:transparent;border:2px solid var(--gold);color:var(--gold);border-radius:999px;padding:.55em 1.35em;font-family:var(--fb);font-weight:500;cursor:pointer;transition:.2s;font-size:.9rem}
.tab-btn:hover{background:rgba(227,192,79,.15)}
.tab-btn.on{background:var(--gold);color:var(--teal-dark)}
.tab-panel{display:none}
.tab-panel.on{display:block;animation:fadeIn .45s ease}
@keyframes fadeIn{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:none}}

.cab-desc{background:var(--gold);color:var(--teal-dark);border-radius:20px;padding:clamp(1.6rem,4vw,2.4rem);max-width:840px;margin:0 auto 1.4rem;box-shadow:0 12px 34px rgba(0,0,0,.18)}
.cab-desc .cab-cap{margin-bottom:.6rem}
.cab-desc h3{color:var(--teal-dark);font-size:1.7rem}
.cab-desc .lead{font-size:1.02rem;margin:.7rem 0 1.1rem;color:#3f3410;line-height:1.6}
.cab-desc .amen li{color:#3f3410}
.cab-desc .amen .li-ic{color:var(--teal-deep)}

.convivencia{max-width:840px;margin:2.4rem auto 0;background:rgba(255,255,255,.06);border:1px solid rgba(227,192,79,.35);border-radius:18px;padding:1.8rem 2rem;text-align:center}
.convivencia h3{color:var(--gold-soft);font-size:1.3rem;margin-bottom:.6rem}
.convivencia p{color:var(--txt-soft);font-size:.96rem}

/* ===== PET FRIENDLY (patita real con texto adentro) ===== */
.pet-paw-sec{display:flex;justify-content:center;padding:3rem 1rem 1.5rem}
.paw-img{position:relative;width:300px;max-width:82vw;filter:drop-shadow(0 12px 26px rgba(0,0,0,.18))}
.paw-img>img{width:100%;display:block}
.paw-txt{position:absolute;left:50%;top:62%;transform:translate(-50%,-50%);width:54%;text-align:center;color:var(--teal-dark);line-height:1.12}
.paw-txt strong{display:block;font-size:1rem;font-weight:700}
.paw-txt span{display:block;font-size:.78rem;font-weight:600;margin-top:.35rem;color:var(--teal-deep)}

/* ===== PRESTACIONES / IMPORTANTE ===== */
.presta{max-width:var(--wrap);margin:0 auto;padding:1rem clamp(1rem,4vw,2.5rem) 4rem}
.presta-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1.5rem}
.presta-item{
  background:rgba(255,255,255,.06);border:1px solid rgba(227,192,79,.3);
  border-radius:14px;padding:1.6rem 1.6rem;display:flex;gap:1rem;align-items:flex-start;
}
.presta-item .p-ic{flex:0 0 auto;width:30px;height:30px;color:var(--gold-soft);display:inline-flex}
.presta-item .p-ic svg{width:100%;height:100%;fill:none;stroke:currentColor;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
.presta-item h4{color:var(--gold-soft);font-size:1rem;margin-bottom:.15rem}
.presta-item p{font-size:.9rem;color:var(--txt-soft)}

/* ===== ÍCONOS PROPIOS (línea, un color) ===== */
.icn{display:inline-flex;width:34px;height:34px}
.icn svg{width:100%;height:100%;fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.icn-sm{width:26px;height:26px}

/* ===== GALERÍA (carrusel con las fotos reales) ===== */
.galeria{padding:5rem clamp(1rem,4vw,2.5rem);max-width:980px;margin:0 auto}
.carousel{position:relative;border-radius:20px;overflow:hidden;box-shadow:0 16px 44px rgba(0,0,0,.3);background:var(--teal-dark)}
.carousel-track{position:relative;aspect-ratio:16/10}
.carousel-track figure{position:absolute;inset:0;opacity:0;transition:opacity 1s ease;margin:0}
.carousel-track figure.on{opacity:1}
.carousel-track img{width:100%;height:100%;object-fit:cover;animation:kb 8s ease-in-out infinite alternate}
@keyframes kb{from{transform:scale(1)}to{transform:scale(1.07)}}
.car-btn{position:absolute;top:50%;transform:translateY(-50%);z-index:3;width:44px;height:44px;border-radius:50%;border:0;cursor:pointer;background:rgba(18,56,51,.55);color:#fff;font-size:1.3rem;display:flex;align-items:center;justify-content:center;transition:.2s}
.car-btn:hover{background:var(--gold);color:var(--teal-dark)}
.car-prev{left:14px}.car-next{right:14px}
.car-dots{position:absolute;bottom:14px;left:0;right:0;z-index:3;display:flex;justify-content:center;gap:.5rem}
.car-dots button{width:10px;height:10px;border-radius:50%;border:0;cursor:pointer;background:rgba(255,255,255,.5);transition:.2s;padding:0}
.car-dots button.on{background:var(--gold);transform:scale(1.25)}

/* ===== SEPARADOR DE OLAS (en toda la web) ===== */
.wave-sep{position:relative;height:60px;overflow:hidden;line-height:0;background:transparent}
.wave-sep::before{
  content:"";position:absolute;left:0;bottom:0;width:2880px;height:60px;
  background-repeat:repeat-x;background-size:1440px 60px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='60' viewBox='0 0 1440 60'%3E%3Cpath fill='%23e3c04f' fill-opacity='0.28' d='M0,30 C240,55 480,5 720,30 C960,55 1200,5 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E");
  animation:waveX 20s linear infinite;
}

/* ===== UBICACIÓN ===== */
.ubic{background:var(--bg-alt);padding:5rem clamp(1rem,4vw,2.5rem)}
.ubic .sec-head{margin-bottom:2rem}
.ubic-wrap{
  max-width:1000px;margin:0 auto;
  display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.4rem,3vw,2.4rem);align-items:stretch;
  background:rgba(255,255,255,.05);border:1px solid rgba(227,192,79,.3);
  border-radius:22px;padding:clamp(1.4rem,3vw,2.2rem);
}
.ubic-text{display:flex;flex-direction:column;justify-content:center}
.ubic-text p{color:var(--txt-soft);margin:.5rem 0}
.ubic-dir{font-size:.98rem}
.ubic-text .btn{align-self:flex-start;margin-top:1rem}
.ubic-map{position:relative;min-height:300px;border-radius:16px;overflow:hidden;border:2px solid var(--gold);background:var(--teal-deep)}
.ubic-map iframe{width:100%;height:100%;border:0;display:block;
  filter:sepia(.45) hue-rotate(120deg) saturate(1.3) brightness(.82) contrast(.95);
}
.map-load{position:absolute;inset:0;width:100%;height:100%;cursor:pointer;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.4rem;background:linear-gradient(160deg,var(--teal),var(--teal-deep));color:#fff;border:0;font-family:var(--fb);text-align:center;padding:1rem}
.map-load span{font-size:1.02rem;font-weight:500}
.map-load small{font-size:.8rem;color:rgba(255,255,255,.85);max-width:240px}
.map-load:hover{filter:brightness(1.06)}
@media(max-width:760px){.ubic-wrap{grid-template-columns:1fr}}

/* ===== RESERVAR ===== */
.reservar{background:linear-gradient(160deg,var(--teal-deep),var(--teal-dark));color:#fff;padding:5rem clamp(1rem,4vw,2.5rem)}
.res-inner{max-width:760px;margin:0 auto}
.res-form{background:rgba(255,255,255,.06);border:1px solid rgba(227,192,79,.25);border-radius:22px;padding:clamp(1.5rem,4vw,2.6rem)}
.fld{margin-bottom:1.1rem;display:flex;flex-direction:column}
.fld-row{display:grid;grid-template-columns:1fr 1fr;gap:1.1rem}
.fld label{font-size:.85rem;font-weight:500;color:var(--gold-soft);margin-bottom:.35rem}
.fld input,.fld select,.fld textarea{font-family:var(--fb);font-size:.95rem;color:#fff;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.2);border-radius:12px;padding:.75em .9em;transition:.2s;width:100%}
.fld input::placeholder,.fld textarea::placeholder{color:rgba(255,255,255,.5)}
.fld input:focus,.fld select:focus,.fld textarea:focus{outline:none;border-color:var(--gold);background:rgba(255,255,255,.13)}
.fld select option{color:#123833;background:#fff}
.fld textarea{resize:vertical}
.res-choose{margin-top:1.2rem;font-size:.9rem;color:var(--gold-soft);text-align:center}
.res-actions{display:flex;gap:1rem;flex-wrap:wrap;margin-top:.7rem}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}
.res-actions .btn{flex:1;min-width:200px}
.res-note{margin-top:1rem;font-size:.9rem;color:var(--gold-soft);min-height:1.2em;text-align:center}

/* ===== FOOTER ===== */
.footer{background:var(--teal-darker);color:#fff;text-align:center;padding:3.5rem 1.5rem 2.5rem}
.foot-logo{width:220px;margin:0 auto 1rem}
.foot-tag{font-family:var(--fs);color:var(--gold-soft);font-size:1.7rem;margin-bottom:1.4rem;line-height:1}
.foot-social{display:flex;justify-content:center;gap:1rem;margin-bottom:1.4rem}
.foot-social .soc{width:46px;height:46px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,.08);border:1px solid rgba(227,192,79,.3);color:var(--gold-soft);transition:.25s}
.foot-social .soc:hover{background:var(--gold);color:var(--teal-dark);transform:translateY(-3px)}
.foot-dir{color:rgba(255,255,255,.6);font-size:.9rem;margin-bottom:1.4rem}
.foot-bottom{max-width:1100px;margin:1.4rem auto 0;padding:1.2rem .3rem 0;border-top:1px solid rgba(255,255,255,.12);
  display:flex;flex-direction:column;align-items:flex-start;gap:.25rem;text-align:left}
.foot-copy{font-size:.82rem;color:rgba(255,255,255,.55)}
.foot-credit{font-size:.88rem;color:rgba(255,255,255,.6)}
.foot-credit a{color:var(--gold-soft);font-weight:600}
.foot-credit a:hover{color:var(--gold)}

/* ===== WHATSAPP FLOTANTE ===== */
.wa-float{position:fixed;right:20px;bottom:20px;z-index:120;width:58px;height:58px;border-radius:50%;background:#25D366;color:#fff;display:flex;align-items:center;justify-content:center;box-shadow:0 6px 20px rgba(0,0,0,.28);transition:.25s}
.wa-float:hover{transform:scale(1.08);box-shadow:0 8px 26px rgba(0,0,0,.35)}

/* ===== COOKIES ===== */
.cookie-bar{position:fixed;left:0;right:0;bottom:0;z-index:130;display:flex;align-items:center;justify-content:center;gap:1.2rem;flex-wrap:wrap;background:var(--teal-dark);color:#fff;padding:.8rem 1.2rem;box-shadow:0 -4px 20px rgba(0,0,0,.2)}
.cookie-bar[hidden]{display:none}
.cookie-bar p{font-size:.88rem;margin:0;max-width:640px}
.cookie-btns{display:flex;align-items:center;gap:.7rem}
.cookie-bar .btn{padding:.5em 1.4em;font-size:.85rem}
.cookie-no{background:none;border:0;color:rgba(255,255,255,.7);cursor:pointer;font-family:var(--fb);font-size:.85rem;text-decoration:underline}
.cookie-no:hover{color:#fff}

/* ===== RESPONSIVE ===== */
@media(max-width:860px){
  .nav-links{position:fixed;top:0;right:0;height:100vh;width:min(78vw,320px);flex-direction:column;justify-content:center;gap:1.8rem;background:var(--teal-dark);transform:translateX(100%);transition:.35s;padding:2rem}
  .nav-links.open{transform:translateX(0)}
  .nav-links a{color:#fff;font-size:1.15rem}
  .nav-links a:hover{color:var(--gold)}
  .nav-burger{display:flex;z-index:101}
  .nav-burger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .nav-burger.open span:nth-child(2){opacity:0}
  .nav-burger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
  .ubic{grid-template-columns:1fr}
  .ubic-map{min-height:300px}
}
@media(max-width:520px){
  .fld-row{grid-template-columns:1fr}
  .res-actions .btn{flex:1 1 100%}
  .hero-place{letter-spacing:.35em}
}
