/* == HOTELPAREJAS.COM | ESTILOS GLOBAL == */

/* == INICIO: VARIABLES == */
:root{
  --bg:#f1e3d3;
  --text:#1f3a2a;
  --text2:#2f5a3f;
  --card:#fff8ef;
  --line:rgba(60,42,31,.14);

  --accent:#1c8f86;
  --accent2:#8fd2cc;
  --navbg:rgba(0,0,0,.18);

  --radius:18px;
  --shadow:0 12px 28px rgba(0,0,0,.10);

  --wa:#25D366;
  --call:#111111;

  /* Cookies (verde/azulado) */
  --cookie-bg: rgba(12, 84, 78, .78);
  --cookie-text: #eaf7f6;
  --cookie-card: #ffffff;
  --cookie-card-text: #16312f;
  --cookie-border: rgba(10, 52, 49, .20);
  --cookie-btn: #1c8f86;
  --cookie-btn-text: #ffffff;
  --cookie-btn-reject: #0f3f3b;
  --cookie-shadow: 0 18px 44px rgba(0,0,0,.24);
  --cookie-radius: 14px;
  --cookie-link: #bff3ef;

  --maps: var(--cookie-btn);
}
/* == FIN: VARIABLES == */

/* == INICIO: BASE == */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  padding-bottom:92px; /* deja hueco para .fixedbar */
}
a{ color:inherit; }
.container{ max-width:1120px; margin:0 auto; padding:20px; }
.small{ font-size:.95rem; }
.muted{ opacity:.86; }
/* == FIN: BASE == */

/* == INICIO: BOTONES == */
.btn{
  display:inline-block;
  text-decoration:none;
  font-weight:800;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid transparent;
  color:#fff;
  text-align:center;
  line-height:1.1;
  white-space:nowrap;
}
.btn-maps{ background:var(--maps); border-color:var(--maps); }
.btn-call{ background:var(--call); border-color:var(--call); }
.btn-wa{ background:var(--wa); border-color:var(--wa); }
.btn-accent{ background:var(--accent); border-color:var(--accent); }
.btn-green{ background:var(--cookie-btn); border-color:var(--cookie-btn); }
/* == FIN: BOTONES == */

/* == INICIO: COMPONENTES == */
.badge{
  display:inline-block;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.20);
  color:#fff;
  font-weight:700;
  font-size:.92rem;
}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 10px 22px rgba(0,0,0,.05);
}
.aside-more{ margin-top:12px; line-height:1.5; }
/* == FIN: COMPONENTES == */

.hero{
  position:relative;
  min-height:48vh;
  background:#222 url("../hotel/hotel.png") center/cover no-repeat;
  color:#fff;
  overflow:hidden;
}

.hero.is-tall{ min-height:62vh; } /* index / english */
.hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.58), rgba(0,0,0,.38));
  z-index:0;
}
.hero-inner{ position:relative; z-index:1; padding:18px 0 26px; }
.hero-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:.2px;
  min-width:220px;
}
.brand a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#fff;
}
.brand img{
  width:46px;
  height:46px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.10);
  object-fit:contain;
  display:block;
}
.hero-content{ text-align:center; padding:26px 0 8px; }
.hero.is-tall .hero-content{ padding:34px 0 10px; }
.hero h1{
  margin:0 0 12px;
  font-size:clamp(1.7rem, 3.6vw, 2.6rem);
  line-height:1.12;
}
.hero.is-tall h1{ font-size:clamp(1.7rem, 3.6vw, 2.8rem); }
.hero p{
  margin:0 auto 14px;
  max-width:900px;
  font-size:clamp(1rem, 1.55vw, 1.1rem);
  opacity:.96;
}
.hero.is-tall p{
  margin:0 auto 16px;
  font-size:clamp(1rem, 1.65vw, 1.12rem);
}
.hero.is-tall h1{ font-size:clamp(1.7rem, 3.6vw, 2.8rem); }
.hero p{
  margin:0 auto 14px;
  max-width:900px;
  font-size:clamp(1rem, 1.55vw, 1.1rem);
  opacity:.96;
}
.hero.is-tall p{
  margin:0 auto 16px;
  font-size:clamp(1rem, 1.65vw, 1.12rem);
}
/* base p (48vh) */
.hero-actions{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top:6px;
}
.hero-badges{
  margin-top:12px;
  display:flex;
  gap:8px;
  justify-content:center;
  flex-wrap:wrap;
}
.hero.is-tall .hero-badges{ margin-top:14px; }
.hero.is-tall .hero-badges{
  margin-top:12px;
  display:flex;
  gap:8px;
  justify-content:center;
  flex-wrap:wrap;
}
.hero.is-tall .hero-badges{ margin-top:14px; }
/* == FIN: HERO == */

/* == INICIO: MENÚ == */
.topbar{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 12px;
  border-radius:999px;
  background:var(--navbg);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(6px);
}
.nav-desktop{ display:flex; align-items:center; gap:6px; }
.nav-desktop a{
  color:#fff;
  text-decoration:none;
  font-weight:850;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid transparent;
}
.nav-desktop a:hover{
  border-color:rgba(255,255,255,.22);
  background:rgba(255,255,255,.08);
}
.nav-desktop a.is-cta{
  background:rgba(255,255,255,.16);
  border-color:rgba(255,255,255,.25);
}
.lang{ display:flex; align-items:center; gap:10px; }
.flag{
  width:26px;
  height:18px;
  border-radius:4px;
  border:1px solid rgba(255,255,255,.35);
  box-shadow:0 6px 16px rgba(0,0,0,.18);
  display:inline-block;
  overflow:hidden;
}
.flag svg{ display:block; width:100%; height:100%; }
.lang a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#fff;
  text-decoration:none;
  font-weight:800;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.08);
}
.nav-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.08);
  color:#fff;
  cursor:pointer;
}
.nav-toggle:focus{
  outline:2px solid rgba(255,255,255,.45);
  outline-offset:2px;
}
.nav-toggle svg{ width:22px; height:22px; display:block; }
.nav-mobile{
  display:none;
  margin-top:10px;
  background:rgba(0,0,0,.26);
  border:1px solid rgba(255,255,255,.18);
  border-radius:16px;
  overflow:hidden;
  backdrop-filter:blur(6px);
}
.nav-mobile a{
  display:block;
  padding:14px 14px;
  text-decoration:none;
  color:#fff;
  font-weight:900;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.nav-mobile a:last-child{ border-bottom:none; }
.nav-mobile a:hover{ background:rgba(255,255,255,.10); }

@media(max-width:980px){
  .topbar{ justify-content:flex-end; }
  .nav-desktop{ display:none; }
  .nav-toggle{ display:inline-flex; }
}
@media(max-width:560px){
  .hero-top{ flex-direction:column; align-items:stretch; }
  .brand{ min-width:0; }
  .topbar{ width:100%; justify-content:space-between; }
  .lang{ gap:8px; }
  .lang a{ padding:6px 8px; }
}
/* == FIN: MENÚ == */

/* == INICIO: SECCIONES == */
.section{ margin-top:30px; }
.section-title{ text-align:center; margin-bottom:14px; }
.section-title h2{ margin:0; font-size:1.65rem; }
.section-title .hint{ font-size:.95rem; opacity:.82; margin-top:6px; }

.text-box{ padding:18px; }
.text-box h2, .text-box h3{ margin:0 0 10px; }
.text-box p{ margin:0 0 12px; color:var(--text2); }

.list{ margin:0; padding-left:18px; color:var(--text2); }
.list li{ margin:6px 0; }
/* == FIN: SECCIONES == */

/* == INICIO: GRIDS (index/english) == */
.services{ display:grid; grid-template-columns:repeat(4, 1fr); gap:14px; }
@media(max-width:980px){ .services{ grid-template-columns:repeat(2, 1fr); } }
@media(max-width:560px){ .services{ grid-template-columns:1fr; } }
.service{ padding:16px; }
.service strong{ display:block; margin-bottom:6px; }

.prices{ display:grid; grid-template-columns:repeat(2, 1fr); gap:14px; }
@media(max-width:820px){ .prices{ grid-template-columns:1fr; } }
.price-card{ padding:18px; }
.price-title{ margin:0 0 6px; font-size:1.15rem; }
.price-amount{ font-size:2rem; font-weight:950; margin:0; color:var(--text); }
.price-note{ margin:8px 0 0; color:var(--text2); }
/* == FIN: GRIDS == */

/* == INICIO: GALERÍA == */
.gallery{ display:grid; grid-template-columns:repeat(3, 1fr); gap:14px; }
@media(max-width:920px){ .gallery{ grid-template-columns:repeat(2, 1fr); } }
@media(max-width:560px){ .gallery{ grid-template-columns:1fr; } }

.photo{
  border-radius:var(--radius);
  overflow:hidden;
  background:#eee;
  border:1px solid rgba(0,0,0,.10);
  aspect-ratio:4/3;
  transform:translateZ(0);
  transition:transform .18s ease, box-shadow .18s ease;
  box-shadow:0 8px 18px rgba(0,0,0,.06);
  position:relative;
}
.photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:scale(1.01);
  transition:transform .22s ease;
}
@media(hover:hover){
  .photo:hover{ transform:translateY(-2px); box-shadow:0 14px 28px rgba(0,0,0,.14); }
  .photo:hover img{ transform:scale(1.06); }
}

/* Variante con caption + zoom (galeria/parking) */
.photo.has-cap{ position:relative; cursor:zoom-in; }
.photo.has-cap .cap{
  position:absolute;
  left:10px; right:10px; bottom:10px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(0,0,0,.48);
  backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  font-weight:900;
  font-size:.95rem;
  line-height:1.2;
}
/* == FIN: GALERÍA == */

/* == INICIO: LIGHTBOX == */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.78);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:99999;
  padding:16px;
}
.lightbox.open{ display:flex; }
.lightbox-inner{
  width:min(980px, 100%);
  display:flex;
  flex-direction:column;
  gap:10px;
  max-height:calc(100vh - 32px);
}
.lightbox-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  color:#fff;
  flex:0 0 auto;
}
.lightbox-title{ font-weight:950; line-height:1.2; }
.lightbox-close{
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.10);
  color:#fff;
  border-radius:999px;
  padding:10px 12px;
  font-weight:950;
  cursor:pointer;
  position:relative;
  z-index:100000;
  pointer-events:auto;
  flex:0 0 auto;
}
.lightbox-close:active{ transform:translateY(1px); }
.lightbox-img{
  width:100%;
  max-width:100%;
  height:auto;
  max-height:calc(100vh - 140px);
  object-fit:contain;
  display:block;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 18px 44px rgba(0,0,0,.34);
}
/* == FIN: LIGHTBOX == */

/* == INICIO: LEGAL (TABLAS) == */
.table-wrap{
  overflow:auto;
  border-radius:var(--radius);
}
table{
  width:100%;
  border-collapse:collapse;
  min-width:760px;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
}
th, td{
  text-align:left;
  vertical-align:top;
  padding:12px 12px;
  border-bottom:1px solid var(--line);
  color:var(--text2);
  font-size:.98rem;
}
th{
  color:var(--text);
  font-weight:950;
  background:rgba(28,143,134,.06);
}
tr:last-child td{ border-bottom:none; }
.kbd{
  display:inline-block;
  padding:2px 8px;
  border-radius:10px;
  background:rgba(0,0,0,.08);
  border:1px solid rgba(0,0,0,.10);
  font-weight:900;
  color:var(--text);
}
.note{
  background:rgba(255,196,0,.16);
  border:1px solid rgba(60,42,31,.14);
  border-radius:14px;
  padding:12px 14px;
  color:var(--text2);
}
/* == FIN: LEGAL (TABLAS) == */

/* == INICIO: VIDEOS == */
.video-card{ padding:18px; }
.video-wrapper{
  width:100%;
  aspect-ratio:16 / 9;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.10);
  box-shadow:0 12px 28px rgba(0,0,0,.10);
  background:#000;
}
.video-wrapper iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}
/* == FIN: VIDEOS == */

/* == INICIO: 404 == */
.error-wrap{ padding:18px; text-align:center; }
.error-title{ margin:0 0 8px; font-size:1.7rem; line-height:1.15; }
.error-desc{
  margin:0 auto 14px;
  max-width:820px;
  color:var(--text2);
  line-height:1.55;
}
.error-image{
  display:block;
  width:min(920px, 100%);
  height:auto;
  margin:14px auto 8px;
  border-radius:var(--radius);
  border:1px solid rgba(0,0,0,.10);
  box-shadow:0 14px 28px rgba(0,0,0,.10);
  background:#fff;
}
.error-actions{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}
@media(max-width:560px){
  .error-actions{ flex-direction:column; align-items:stretch; }
  .error-actions a{ width:100%; }
}
/* == FIN: 404 == */

/* == INICIO: FOOTER == */
footer{
  margin-top:34px;
  background:#111;
  color:#bbb;
  padding:26px 0;
  text-align:center;
}
footer a{
  color:#bbb;
  text-decoration:underline;
  text-underline-offset:3px;
}
footer a:hover{ color:#fff; }
.footer-links{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:10px;
}
/* == FIN: FOOTER == */

/* == INICIO: BARRA FIJA == */
.fixedbar{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:1050;
  background:rgba(255,248,239,.96);
  backdrop-filter:blur(6px);
  border-top:1px solid var(--line);
  padding:10px 12px env(safe-area-inset-bottom, 0px);
}
.fixedbar .wrap{
  max-width:1120px;
  margin:0 auto;
  display:flex;
  gap:10px;
}
.fixedbar a{ flex:1; }
/* == FIN: BARRA FIJA == */

/* == INICIO: COOKIES (BANNER + POPUP) == */
.cookie-banner{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  background:var(--cookie-bg);
  color:var(--cookie-text);
  padding:14px 16px;
  text-align:center;
  z-index:9998;
  display:none;
  border-top:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(10px);
}
.cookie-banner p{ margin:0; line-height:1.35; font-size:15px; }
.cookie-banner a{
  color:var(--cookie-link);
  text-decoration:underline;
  text-underline-offset:3px;
  margin:0 6px;
  font-weight:900;
}
.cookie-buttons{
  margin-top:12px;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
}
.cookie-button, .save-button{
  background:var(--cookie-btn);
  color:var(--cookie-btn-text);
  border:1px solid rgba(255,255,255,.18);
  padding:10px 14px;
  cursor:pointer;
  border-radius:999px;
  font-weight:900;
  font-size:15px;
  transition:transform .08s ease, filter .12s ease;
}
.cookie-button:hover, .save-button:hover{ filter:brightness(1.07); }
.cookie-button:active, .save-button:active{ transform:translateY(1px); }
.cookie-button.reject{ background:var(--cookie-btn-reject); }
.cookie-button.reject:hover{ filter:brightness(1.10); }

.popup-container{
  display:none;
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  background-color:var(--cookie-card);
  color:var(--cookie-card-text);
  padding:18px;
  border-radius:var(--cookie-radius);
  box-shadow:var(--cookie-shadow);
  z-index:9999;
  max-width:92%;
  width:520px;
  text-align:left;
  border:1px solid var(--cookie-border);
}
.cookie-title{ font-size:22px; margin:0 0 12px; font-weight:950; }
.cookie-desc{ margin:0 0 12px; opacity:.92; line-height:1.35; font-size:14px; }
.cookie-option{
  margin-bottom:12px;
  padding:12px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:12px;
  background:#f2fbfa;
}
.cookie-option label{ display:block; margin-bottom:6px; font-size:15px; font-weight:950; }
.cookie-option small{ display:block; opacity:.85; margin-top:4px; line-height:1.25; }
.cookie-option select{
  width:100%;
  padding:10px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.18);
  font-size:15px;
  background:#fff;
  color:#16312f;
}
.cookie-modal-actions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  flex-wrap:wrap;
  margin-top:6px;
}
#configButton{
  position:fixed;
  left:14px;
  right:auto;
  bottom:92px;
  z-index:9999;
  display:none;
  border-radius:999px;
  padding:8px 10px;
  font-size:13px;
  line-height:1;
  opacity:.92;
}

@media screen and (max-width:600px){
  .cookie-banner p{ font-size:14px; }
  .cookie-button{ width:100%; }
  .cookie-modal-actions .save-button{ width:100%; }
  #configButton{
    left:10px;
    right:auto;
    bottom:100px;
    width:auto;
    padding:8px 10px;
    font-size:13px;
  }
}
/* == FIN: COOKIES == */

/* == INICIO: PEQUEÑOS FIXES == */
@media(max-width:560px){
  .hero-actions{ flex-direction:column; align-items:stretch; }
  .hero-actions a{ width:100%; }
}
/* == FIN: PEQUEÑOS FIXES == */
