:root{
  --brand:#6cb5df;            /* barra / enlaces */
  --brand-600:#199AC4;
  --accent:#FF8345;           /* Book Now / deal */
  --accent-600:#F57331;
  --chip:#E9F6FD;             /* headers celestes */
  --chip-border:#CBEAF7;
  --bg:#F7FAFD;
  --surface:#ffffff;
  --text:#0F172A;
  --muted:#6B7280;
  --border:#E5E7EB;
  --shadow:0 10px 30px rgba(15,23,42,.08);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--text);background:var(--bg)}
img{max-width:100%;display:block}

.container{width:min(1200px,92%);margin-inline:auto}

.topbar{background:var(--brand);color:#fff}
.topbar__inner{display:flex;align-items:center;justify-content:space-between;padding:.35rem 0}
.pill{display:inline-block;border-radius:999px;padding:.25rem .6rem;font-weight:700}
.pill--ghost{background:rgba(255,255,255,.18);}

.header{background:#fff;box-shadow:var(--shadow);position:sticky;top:0;z-index:50}
.header__inner{display:flex;align-items:center;gap:1rem;padding:.65rem 0}
.brand{display:flex;align-items:center;gap:.5rem;font-weight:800;color:#fff;text-decoration:none}
.brand__logo{background:#fff;border-radius:50%;width:28px;height:28px;display:grid;place-items:center;color:#222}
.brand__text{color:#fff}
.header{background:var(--brand)}
.header .nav a{color:#fff;text-decoration:none;font-weight:600;margin:0 .75rem;opacity:.95}
.header .nav a:hover{opacity:1;text-decoration:underline}
.header__cta{margin-left:auto;display:flex;gap:.5rem}
.btn{display:inline-flex;align-items:center;justify-content:center;border:0;border-radius:999px;cursor:pointer;font-weight:700}
.btn--tag{background:#fff;color:var(--brand);padding:.45rem .9rem}
.btn--ghost{background:rgba(255,255,255,.18);color:#fff;padding:.45rem .65rem}
.icon-btn{width:38px;height:38px;border-radius:999px}

.page{display:grid;grid-template-columns:1fr 360px;gap:28px;margin:24px auto}
@media (max-width: 1024px){.page{grid-template-columns:1fr}}

.main-col{min-width:0}

    /* ---------- Top Social Bar ---------- */
        
.topbar{
  background: var(--brand);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.12);
  /* o clara: inset 0 -1px 0 rgba(255,255,255,.35) */
}


        .topbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 38px
        }

        .social {
            display: flex;
            gap: .6rem;
            align-items: center
        }

        .social a {
            display: grid;
            place-items: center;
            width: 28px;
            height: 28px;
            
            border-radius: 999px;
            background: rgba(255, 255, 255, .15)
        }
        a,
a:hover,
a:focus,
a:active,
a:visited {
  text-decoration: none;
}

/* Grid de promociones */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.promo-item {
  text-align: center;
}

.promo-item img {
  width: 100%;
  max-width: 150px;   /* controla tamaño máximo */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
  object-fit: cover;  /* por si usas distintos tamaños */
}

.promo-item img:hover {
  transform: scale(1.05);
}

.promo-caption {
  margin-top: 6px;
  font-size: 0.9rem;
  color: #555;
}

/* Gallery */
.gallery__stage{position:relative;border-radius:18px;overflow:hidden;background:#ddd;aspect-ratio:16/9;box-shadow:var(--shadow)}
.gallery__stage img{width:100%;height:100%;object-fit:cover}
.gallery__nav{position:absolute;top:50%;transform:translateY(-50%);background:rgba(0,0,0,.4);color:#fff;border:0;border-radius:10px;width:38px;height:46px;font-size:22px}
.gallery__nav--prev{left:8px}.gallery__nav--next{right:8px}
.badge{position:absolute;top:10px;left:10px;background:var(--accent);color:#fff;font-weight:800;border-radius:8px;padding:.25rem .5rem}
.thumbs{display:flex;gap:.5rem;margin-top:.5rem}
.thumb{border:2px solid transparent;border-radius:10px;overflow:hidden;cursor:pointer;padding:0}
.thumb.is-active{border-color:var(--brand)}

/* Hero meta */
.hero-meta .title{font-size:clamp(1.3rem,2.2vw,2rem);margin:.75rem 0 .25rem;font-weight:800}
.meta-row{display:flex;flex-wrap:wrap;gap:.6rem 1rem;align-items:center;color:var(--muted)}
.meta-row .sep{opacity:.5}
.meta{display:inline-flex;align-items:center;gap:.4rem}
.meta .dot{width:10px;height:10px;background:var(--brand);border-radius:999px;display:inline-block}
.link{background:none;border:0;color:var(--brand);font-weight:700;cursor:pointer}

/* Tabs */
.tabs{margin-top:18px}
.tabs__list{display:flex;gap:.75rem;border-bottom:1px solid var(--border);overflow:auto;padding-bottom:.4rem}
.tab{background:#fff;border:2px solid var(--brand);color:var(--brand);padding:.45rem .9rem;border-radius:999px;font-weight:800;cursor:pointer}
.tab.is-active{background:var(--brand);color:#fff}
.tabpane{display:none;margin-top:16px}
.tabpane.is-active{display:block}

/* Cards / content boxes */
.card{background:var(--chip);border:1px solid var(--chip-border);border-radius:14px;padding:1rem;box-shadow:0 2px 0 rgba(0,0,0,.02)}
.card__header{display:flex;gap:1rem;align-items:center;justify-content:space-between}
.card__header h2{margin:0;font-size:1.05rem}
.chip{display:inline-flex;align-items:center;gap:.4rem;background:#EFF6FB;border:1px solid var(--chip-border);border-radius:999px;font-weight:700;color:#2b4a60;padding:.25rem .6rem}
.chip--muted{color:var(--muted)}

.readmore{line-height:1.6}

/* CTA grid */
.cta-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:.75rem;margin:1rem 0}
.cta{display:grid;place-items:center;background:#fff;border:1px solid var(--border);border-radius:14px;padding:.9rem .5rem;font-weight:700;color:#374151;text-decoration:none}
.cta span{margin-top:.35rem}
@media (max-width:700px){.cta-grid{grid-template-columns:repeat(2,1fr)}}

/* Promo banner */
.promo{margin-top:.75rem;padding:0;overflow:hidden}
.promo img{display:block;width:100%;height:auto;border-radius:12px}

/* Price cards */
.side-col{position:sticky;top:78px;height:fit-content}
.btn--primary{background:var(--accent);color:#fff;padding:.7rem 1rem}
.btn--primary:hover{background:var(--accent-600)}
.btn--xl{width:100%;padding:.9rem 1.1rem;font-size:1.05rem;margin-bottom:.9rem}

.price-card{background:#fff;border:1px solid var(--border);border-radius:16px;overflow:hidden;box-shadow:var(--shadow);margin-bottom:14px}
.price-card__head{background:var(--chip);padding:.7rem .9rem;border-bottom:1px solid var(--chip-border);font-weight:800}
.price-card__head small{display:block;color:var(--muted);font-weight:600}
.price-card__row{display:grid;grid-template-columns:1fr auto auto;gap:.75rem;align-items:center;padding:.75rem .9rem}
.price{color:#E11D48;font-weight:800}

/* Map */
.map{margin-top:.6rem;border-radius:12px;overflow:hidden;border:1px solid var(--border)}
.map iframe{width:100%;height:280px;border:0}

/* Related */
.related{margin:24px 0}
.related__grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:1rem}
.relcard{display:block;background:#fff;border:1px solid var(--border);border-radius:16px;overflow:hidden;text-decoration:none;color:inherit;box-shadow:var(--shadow)}
.relcard img{aspect-ratio:16/9;object-fit:cover}
.relcard__body{padding:.7rem .8rem}
.relcard__title{font-weight:800}
.relcard__price{color:#ef4444;font-weight:800;margin-top:.35rem}

/* Footer */
.footer{background:#0F172A;color:#D1D5DB;margin-top:36px}
.footer__grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:2rem;padding:2rem 0}
.footer .brand--footer{font-weight:900;color:#fff;font-size:1.2rem;margin-bottom:.5rem}
.footer h4{color:#fff;margin:.2rem 0 .6rem}
.footer ul{list-style:none;padding:0;margin:0}
.footer li{margin:.3rem 0}
.footer a{color:#9CA3AF;text-decoration:none}
.footer a:hover{color:#E5E7EB}
.stores img{height:40px;margin-right:.5rem}
.subfooter{border-top:1px solid #243244;background:#0C1220;color:#9CA3AF}
.subfooter__inner{display:flex;align-items:center;justify-content:space-between;padding:1rem 0}
.subfooter__links a{color:#9CA3AF;margin-left:1rem;text-decoration:none}
.subfooter__links a:hover{color:#E5E7EB}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: transform 0.2s ease, color 0.2s ease;
}

.contact-item:hover {
  transform: translateY(-4px);
  color: #6b21a8; /* morado */
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #f3f4f6; /* gris claro */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.icon-circle i {
  font-size: 28px;
  color: #6b21a8; /* morado por defecto */
}



.share-btn{
    position:absolute;
    top:15px;
    right:15px;
    z-index:10;
}

.share-btn a{
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#FF8345;
    color:#fff;
    border-radius:50%;
    font-size:22px;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    transition:.3s;
}

.share-btn a:hover{
    background:#F57331;
    transform:scale(1.08);
}

/* video youtube */

.empty-video {
    padding: 40px 20px;
    border-radius: 14px;
    background: #f9fafb;
    color: #6b7280;
    text-align: center;
}

.empty-video i {
    margin-bottom: 14px;
    color: #60b5e3;
    font-size: 42px;
}

.empty-video p {
    margin: 5px 0;
    color: #374151;
    font-size: 16px;
    font-weight: 700;
}

.empty-video small {
    display: block;
    margin-top: 7px;
    line-height: 1.5;
}