:root{
  /* ===================== THEME (Boutique / Premium) ===================== */
  --bg: #0b1220;                  /* fondo general */
  --surface: rgba(255,255,255,.03); /* secciones */
  --card: rgba(255,255,255,.08);
  --card-border: rgba(255,255,255,.14);

  --text: rgba(255,255,255,.92);
  --text-strong: #ffffff;
  --muted: rgba(255,255,255,.70);

  --primary: #f4b55a;             /* dorado */
  --primary-2: #ffcf7a;           /* dorado claro */
  --primary-dark: #d79233;

  --radius: 18px;

  --shadow: 0 18px 55px rgba(0,0,0,.35);
  --shadow-soft: 0 12px 35px rgba(0,0,0,.22);

  --input-bg: rgba(255,255,255,.08);
  --input-border: rgba(255,255,255,.18);
  --focus: rgba(244,181,90,.35);

  --line: rgba(255,255,255,.10);
}

/* ===================== RESET ===================== */
*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; scroll-padding-top: 92px; }

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(1200px 700px at 10% 0%, rgba(244,181,90,.16), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(80,160,255,.12), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, #070a12 100%);
}

.container{ width:min(1100px, 92%); margin:auto; }
h1,h2,h3,h4{ color: var(--text-strong); }
.subtitle{ color: var(--muted); margin-top:8px; margin-bottom:18px; }

/* ===================== HEADER / NAV ===================== */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(10,16,30,.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; }

.logo{
  font-weight: 900;
  text-decoration:none;
  color: var(--text-strong);
  font-size: 18px;
  letter-spacing: .2px;
}
.logo span{ opacity:.82; font-weight: 800; }

.nav-links{ display:flex; gap:16px; align-items:center; }
.nav-links a{
  color: var(--text);
  text-decoration:none;
  font-weight: 900;
  opacity:.90;
}
.nav-links a:hover{ opacity:1; }

.menu-btn{
  display:none;
  background:none;
  border:0;
  font-size:26px;
  cursor:pointer;
  color: var(--text-strong);
}

/* ===================== BUTTONS ===================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius: 999px;
  font-weight: 950;
  text-decoration:none;
  border: 1px solid transparent;
  cursor:pointer;
  line-height:1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, opacity .2s ease;
}

.btn-primary{
  color: #1a1306;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 40px rgba(244,181,90,.20);
}
.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 55px rgba(244,181,90,.28);
}

.btn-outline{
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-color: rgba(255,255,255,.18);
}
.btn-outline:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.28);
}

/* Botón de nav “Contactar” */
.nav-links .btn{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
}

/* ===================== HERO ===================== */
.hero{
  position: relative;
  min-height: 78vh;
  display:flex;
  align-items:center;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center 60%;
  border-bottom: 1px solid var(--line);
}

.hero-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 500px at 20% 30%, rgba(244,181,90,.18), transparent 60%),
    linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.50) 45%, rgba(0,0,0,.18) 100%);
}

.hero-content{
  position: relative;
  padding: 95px 0;
  max-width: 860px;
}

.hero-kicker{
  display:inline-block;
  font-weight: 950;
  letter-spacing:.10em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .92;
  margin-bottom: 10px;
}

.hero-content h1{
  font-size: 54px;
  line-height: 1.05;
  margin-bottom: 14px;
}
.hero-content h1 span{ opacity:.92; }

.hero p{ color: rgba(255,255,255,.92); }

.hero-sub{
  font-size: 18px;
  max-width: 640px;
  margin-bottom: 22px;
}

.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero .btn{
  box-shadow: 0 16px 45px rgba(0,0,0,.28);
}

/* ===================== SECTIONS / LAYOUT ===================== */
.section{ padding:72px 0; }

.gray{
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.split{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:24px;
  align-items:center;
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}

/* ===================== CARDS (GLASS) ===================== */
.card, .card-img{
  background: var(--card);
  border-radius: var(--radius);
  padding:16px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.card h3{ margin-top:10px; margin-bottom:8px; }
.card p{ color: var(--muted); }

/* ===================== SERVICES ===================== */
.services{ grid-template-columns: repeat(3, 1fr); }

.service{
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding:14px;
  font-weight: 950;
  text-align:center;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

/* ===================== LISTS ===================== */
.bullets{ margin-top:12px; padding-left:18px; color: var(--muted); }
.bullets li{ margin:6px 0; }

/* ===================== CONTACT GRID ===================== */
.contact-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}

/* ===================== IMAGES ===================== */
.about-img, .map-img{
  width:100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}

/* ===================== ROOMS ===================== */
.rooms-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap:16px;
  align-items: stretch;
}

.room-card{
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  transition: transform .2s ease, box-shadow .2s ease;
}
.room-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.room-thumb{
  position: relative;
  height: 190px;
  background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.03));
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.room-thumb::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,.10), rgba(0,0,0,.32));
  pointer-events:none;
}

.room-thumb-text{
  font-weight: 950;
  letter-spacing:.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.room-tag{
  position:absolute;
  top:12px; left:12px;
  padding:8px 12px;
  border-radius:999px;
  font-weight: 950;
  font-size:12px;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.25);
  z-index: 2;
}

.room-body{ padding:16px; }

.room-features{
  margin: 10px 0 12px;
  padding-left: 18px;
  color: var(--muted);
}
.room-features li{ margin:6px 0; }

.room-price{
  display:flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}

.room-price .price{
  font-size: 22px;
  font-weight: 950;
  color: var(--text-strong);
}
.room-price .price-note{
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
}

.room-actions{
  display:flex;
  gap:10px;
  flex-wrap: wrap;
}

/* Centrar última card si queda solita */
@media (min-width: 901px){
  .rooms-grid .room-center{ grid-column: 2 / span 1; }
}

/* ===================== FORMS ===================== */
label{
  display:block;
  font-weight: 950;
  margin-bottom:6px;
  color: var(--text);
}

input, select{
  width:100%;
  padding:10px 12px;
  height:44px;
  border-radius: 12px;
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  color: var(--text-strong);
  outline:none;
}

input::placeholder{ color: rgba(255,255,255,.55); }

input:focus, select:focus{
  border-color: rgba(244,181,90,.60);
  box-shadow: 0 0 0 4px var(--focus);
}

/* Select pro (flecha) */
select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 42px;

  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,.88) 50%),
    linear-gradient(135deg, rgba(255,255,255,.88) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

/* Dropdown legible */
select option{
  background: #0f1a2e;
  color: #ffffff;
}

.hint{
  display:block;
  margin-top: 8px;
  font-weight: 900;
  color: var(--muted);
  line-height: 1.1;
}

/* ===================== TABLES ===================== */
.quote-table{ width:100%; border-collapse:collapse; margin-top:10px; }

.quote-table th, .quote-table td{
  border-bottom: 1px solid rgba(255,255,255,.10);
  padding:10px;
  text-align:left;
  color: var(--text);
}

.quote-table th{
  color: rgba(255,255,255,.78);
  font-weight: 950;
  letter-spacing: .02em;
}

.quote-table-wrap{
  overflow:auto;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.14);
}

/* ===================== GALLERY GRID ===================== */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.gallery-grid img{
  width:100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}

.gallery-grid img:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.gallery-grid img:nth-child(1){ grid-column: span 6; }
.gallery-grid img:nth-child(2){ grid-column: span 6; }
.gallery-grid img:nth-child(3){ grid-column: span 4; height: 220px; }
.gallery-grid img:nth-child(4){ grid-column: span 5; height: 220px; }
.gallery-grid img:nth-child(5){ grid-column: span 3; height: 220px; }

/* ===================== LIGHTBOX ===================== */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 22px;
}
.lightbox.hidden{ display:none; }

.lightbox-overlay{
  position:absolute; inset:0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(2px);
}

.lightbox-content{
  position: relative;
  width: min(980px, 95vw);
  background: rgba(10,16,30,.86);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  overflow:hidden;
  backdrop-filter: blur(12px);
}

.lightbox-close{
  position:absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  color: var(--text-strong);
  font-size: 18px;
  font-weight: 950;
  cursor:pointer;
}

.lightbox-header{
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.lightbox-counter{ color: var(--muted); font-weight: 950; }

.lightbox-stage{
  position: relative;
  background: #05070e;
  display:flex;
  align-items:center;
  justify-content:center;
  height: min(62vh, 520px);
}

.lightbox-img{ width:100%; height:100%; object-fit: contain; }

.lightbox-nav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color:#fff;
  font-size: 28px;
  font-weight: 950;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}

.lightbox-nav.prev{ left: 12px; }
.lightbox-nav.next{ right: 12px; }

.lightbox-thumbs{
  padding: 12px;
  display:flex;
  gap: 10px;
  overflow:auto;
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.10);
}

.lightbox-thumb{
  width: 92px;
  height: 62px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor:pointer;
  flex: 0 0 auto;
  opacity:.85;
}
.lightbox-thumb:hover{ opacity:1; }
.lightbox-thumb.active{ border-color: var(--primary); }

/* ===================== QUOTE MODAL (PRO CLEAN + RESPONSIVE FIX) ===================== */

.qmodal{
  position: fixed;
  inset: 0;
  z-index: 9998;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
}
.qmodal.hidden{ display:none; }

.qmodal-overlay{
  position:absolute; inset:0;
  background: rgba(0,0,0,.58);
  backdrop-filter: blur(2px);
}

.qmodal-content{
  position: relative;
  width: min(980px, 96vw);
  max-height: min(86vh, 760px);
  display:flex;
  flex-direction: column;
  background: rgba(255,255,255,.06);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  overflow:hidden;
  backdrop-filter: blur(12px);
}

.qmodal-close{
  position:absolute;
  top:12px; right:12px;
  width:42px; height:42px;
  border-radius:999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.25);
  color: rgba(255,255,255,.92);
  font-size:18px;
  font-weight: 950;
  cursor:pointer;
  z-index: 3;
}

.qmodal-header{
  padding: 18px 18px 12px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: rgba(15,26,46,.92);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 2;
}

.qmodal-sub{
  color: rgba(255,255,255,.74);
  font-weight: 800;
  margin-top: 6px;
}

.qmodal-body{
  padding: 16px 18px 18px;
  overflow: auto;
}

/* Scrollbar */
.qmodal-body::-webkit-scrollbar{ width: 10px; }
.qmodal-body::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.18);
  border-radius: 999px;
}
.qmodal-body::-webkit-scrollbar-track{
  background: rgba(255,255,255,.06);
  border-radius: 999px;
}
/* ===== FORM GRID (PRO RESPONSIVE FIXED) ===== */

.qform-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap:14px;
  align-items:end;
}

/* Botón */
.qform-actions{
  display:flex;
}

#qBtnQuote{
  height:44px;
  white-space:nowrap;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px){

  .qform-grid{
    grid-template-columns: 1fr;
  }

  .qform-actions{
    width:100%;
  }

  #qBtnQuote{
    width:100%;
  }

}
/* ===== RESULT ===== */

.qresult-top{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

@media (max-width: 900px){
  .qresult-top{
    flex-direction:column;
    align-items:flex-start;
  }
}

.qresult-top{
  display:flex;
  justify-content: space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
}

.qtotal{
  background: rgba(0,0,0,.25);
  border-radius: 14px;
  padding: 12px 16px;
}

.qtotal strong{
  font-size: 20px;
  color: var(--primary);
}

.qresult .quote-table-wrap{
  max-height: 280px;
  overflow:auto;
}

/* CTA Sticky */
.qcta{
  display:flex;
  gap:10px;
  justify-content:flex-end;
  flex-wrap: wrap;

  position: sticky;
  bottom: 0;
  z-index: 2;

  padding: 12px 0 6px;
  background: rgba(15,26,46,.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.10);
}

.qcta .btn{
  min-width: 160px;
}

/* ===== MOBILE FIX ===== */

@media (max-width: 900px){

  .qform-grid{
    grid-template-columns: 1fr;
  }

  .qmodal{
    padding: 12px;
  }

  .qresult-top{
    flex-direction: column;
    align-items:flex-start;
  }

  .qcta{
    flex-direction: column;
  }

  .qcta .btn{
    width:100%;
  }

  .qtotal strong{
    font-size: 18px;
  }
}

/* ===================== CHECKOUT (PRO) ===================== */
.checkout-head{ margin-bottom: 18px; }

.checkout-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items:start;
}

.checkout-summary{
  position: sticky;
  top: 92px;
}

.pay-msg{
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  font-weight: 900;
  min-height: 44px;
  display:flex;
  align-items:center;
}

/* ===================== FOOTER ===================== */
.footer{
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
  backdrop-filter: blur(12px);
}

.footer-content{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap:16px;
}

.footer-content p{
  margin:0;
  color: rgba(255,255,255,.85);
  font-weight: 800;
}

.footer-links{
  display:flex;
  gap: 14px;
}

.footer-links a{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;

  font-size: 20px;
  color: #fff;

  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);

  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.footer-links a:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,.22);
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px){
  .split{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .checkout-grid{ grid-template-columns: 1fr; }
  .checkout-summary{ position: static; }

  .hero{ min-height: 72vh; }
  .hero-content h1{ font-size: 40px; }
  .hero-sub{ font-size: 16px; }

  .menu-btn{ display:block; }
  .nav-links{
    display:none;
    position:absolute; left:0; right:0; top:60px;
    background: rgba(10,16,30,.92);
    border-bottom: 1px solid rgba(255,255,255,.10);
    padding:14px;
    flex-direction:column;
    align-items:flex-start;
    backdrop-filter: blur(12px);
  }
  .nav-links.show{ display:flex; }

  .qform-grid{ grid-template-columns: 1fr; }
  .qmodal{ padding: 12px; }

  .gallery-grid{ grid-template-columns: 1fr; }
  .gallery-grid img{ height: 220px; }
  .gallery-grid img:nth-child(n){ grid-column:auto; height:220px; }
}

@media (max-width: 600px){
  .footer-content{
    flex-direction: column;
    text-align: center;
  }
}
/* ===================== PREMIUM UPGRADE PACK ===================== */

/* Separadores con gradiente entre secciones */
.section{
  position: relative;
}
.section::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(244,181,90,.35),
    rgba(255,255,255,.10),
    transparent
  );
  opacity:.8;
}
.section.gray::before{
  opacity: .55;
}

/* Fondo sutil tipo “grain” (luce más premium sin imagen) */
body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:
    radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity:.12;
  mix-blend-mode: overlay;
}

/* Glow sutil para títulos */
h2{
  position: relative;
  display:inline-block;
}
h2::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width: 70%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(244,181,90,.75), transparent);
  opacity:.7;
}

/* Chips (badge) reutilizables */
.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .02em;
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.20);
  backdrop-filter: blur(10px);
}
.chip i{ opacity:.9; }

/* Botones un poquito más premium */
.btn{
  letter-spacing: .2px;
}
.btn:active{
  transform: translateY(0px) scale(.99);
}

/* Cards: borde “brillante” al hover */
.card, .room-card, .service{
  position: relative;
}
.card::after,
.room-card::after,
.service::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: inherit;
  pointer-events:none;
  opacity:0;
  transition: opacity .25s ease;
  background: linear-gradient(135deg,
    rgba(244,181,90,.45),
    rgba(255,255,255,.10),
    rgba(80,160,255,.18)
  );
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  padding: 1px;
}
.card:hover::after,
.room-card:hover::after,
.service:hover::after{
  opacity:1;
}

/* Hero: le damos profundidad con blur panel */
.hero-content{
  padding-left: 2px;
}
.hero-content .hero-kicker{
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.14);
  padding: 8px 12px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

/* Rooms: título + meta con estética */
.room-body h3{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}
.room-body h3::after{
  content:"";
  flex:1;
  height:1px;
  background: linear-gradient(90deg, rgba(255,255,255,.10), transparent);
  margin-left: 10px;
  opacity:.7;
}

/* Servicios con ícono y tarjeta pro */
.service{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height: 54px;
  text-transform: none;
}
.service i{
  color: rgba(244,181,90,.95);
  filter: drop-shadow(0 8px 20px rgba(244,181,90,.12));
}

/* Galería: efecto de “zoom suave” */
.gallery-grid img{
  transform: translateZ(0);
}
.gallery-grid img:hover{
  transform: translateY(-2px) scale(1.01);
}

/* ===================== REVEAL ANIMATIONS ===================== */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Variante “slide” opcional */
.reveal-left{
  opacity:0;
  transform: translateX(-18px);
  transition: opacity .60s ease, transform .60s ease;
}
.reveal-left.is-visible{
  opacity:1;
  transform: translateX(0);
}

.reveal-right{
  opacity:0;
  transform: translateX(18px);
  transition: opacity .60s ease, transform .60s ease;
}
.reveal-right.is-visible{
  opacity:1;
  transform: translateX(0);
}

/* Reducir animación si el usuario tiene “reduced motion” */
@media (prefers-reduced-motion: reduce){
  .reveal, .reveal-left, .reveal-right{
    transition:none !important;
    opacity:1 !important;
    transform:none !important;
  }
}
/* ===================== CONTACT LINK PREMIUM ===================== */

.contact-link{
  text-decoration: none;
  color: var(--muted);
  font-weight: 900;
  transition: color .25s ease, text-shadow .25s ease;
}

.contact-link:hover{
  color: var(--primary);
  text-shadow: 0 0 12px rgba(244,181,90,.35);
}
/* ===================== CHECKOUT MOBILE IMPROVED ===================== */

/* Mejora visual general */
.checkout-card {
  padding: 20px;
}

.checkout-card h3 {
  margin-bottom: 6px;
}

/* Formulario más compacto */
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Inputs un poco más elegantes */
.checkout-form input {
  height: 48px;
  font-size: 15px;
}

/* ===================== RESUMEN REDISEÑADO ===================== */

.checkout-summary-card {
  padding: 20px;
}

.summary-box {
  background: rgba(0,0,0,.25);
  border-radius: 16px;
  padding: 16px;
  margin-top: 12px;
  border: 1px solid rgba(255,255,255,.12);
}

.summary-main {
  font-weight: 800;
  margin-bottom: 12px;
  color: rgba(255,255,255,.85);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.summary-total strong {
  font-size: 20px;
  color: var(--primary);
}

/* ===================== BOTONES MÁS LIMPIOS ===================== */

.btn-full {
  width: 100%;
}

.checkout-actions {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pay-msg {
  font-weight: 900;
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* ===================== BLOQUE BANCO ===================== */

.bank-block {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bank-qr {
  width: 100%;
  max-width: 260px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  align-self: center;
}

.bank-info {
  text-align: center;
}

/* ===================== MOBILE OPTIMIZATION ===================== */

@media (max-width: 900px) {

  .checkout-head h2 {
    font-size: 24px;
  }

  .checkout-grid {
    gap: 20px;
  }

  .card {
    padding: 18px;
  }

  .summary-total {
    font-size: 16px;
  }

  .summary-total strong {
    font-size: 18px;
  }

}
