:root {
  --gold: #b68436;
  --gold-2: #d0a357;
  --gold-dark: #8b6429;
  --cream: #fffaf1;
  --warm: #f8efe1;
  --beige: #eadbc5;
  --line: #e6d7c2;
  --ink: #28231f;
  --soft-ink: #61564c;
  --muted: #8b7d70;
  --white: #fffdf8;
  --shadow: 0 24px 65px rgba(68, 44, 17, .12);
  --radius: 18px;
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.45;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 252, 247, .93);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(182, 132, 54, .22);
}
.header-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 22px;
}
.brand { line-height: .92; letter-spacing: .05em; color: var(--gold-dark); }
.brand strong { display: block; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700; }
.brand span { display: block; margin-top: 6px; font-size: .68rem; text-transform: uppercase; letter-spacing: .35em; color: var(--soft-ink); }
.main-nav { display: flex; justify-content: center; align-items: center; gap: clamp(16px, 2vw, 32px); }
.main-nav a { font-size: .86rem; font-weight: 700; color: #4d453e; position: relative; transition: color .2s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 999px; background: white; }
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 4px auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: .88rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  color: white;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-dark));
  box-shadow: 0 12px 24px rgba(161, 108, 31, .22);
}
.btn-outline { border-color: #a99a89; background: rgba(255,255,255,.72); color: var(--ink); }
.btn-header { min-height: 40px; padding-inline: 18px; border-radius: 6px; white-space: nowrap; }
.wa-dot { font-size: 1.05rem; }

.hero {
  min-height: 470px;
  display: grid;
  grid-template-columns: minmax(330px, 53vw) 1fr;
  align-items: stretch;
  background:
    radial-gradient(circle at 8% 15%, rgba(221, 188, 136, .32), transparent 30%),
    linear-gradient(90deg, #fffcf7 0%, #fff8ef 46%, #f7ead8 100%);
  border-bottom: 1px solid rgba(182, 132, 54, .22);
  overflow: hidden;
}
.hero-copy {
  width: min(590px, calc(100vw - 34px));
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  padding: 60px 0 34px;
  position: relative;
  z-index: 2;
}
.hero-meta { display: flex; flex-wrap: wrap; gap: 24px; color: #7f705f; font-size: .86rem; font-weight: 700; margin-bottom: 18px; }
.hero h1 {
  margin: 0;
  max-width: 620px;
  font-family: var(--serif);
  font-size: clamp(2.45rem, 5vw, 4.75rem);
  line-height: .98;
  letter-spacing: -.05em;
  color: #38312d;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p {
  max-width: 510px;
  margin: 22px 0 24px;
  font-size: 1.02rem;
  color: #3d3834;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 42px; }
.hero-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 610px; }
.hero-benefits article { display: flex; align-items: center; gap: 10px; color: #5f544b; font-size: .76rem; font-weight: 700; line-height: 1.25; }
.hero-benefits span { width: 37px; height: 37px; flex: 0 0 37px; display: grid; place-items: center; border: 1px solid rgba(182,132,54,.45); border-radius: 50%; color: var(--gold); font-size: 1.1rem; background: rgba(255,255,255,.45); }
.hero-image { position: relative; min-height: 470px; }
.hero-image > img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-fade { position: absolute; inset: 0; background: linear-gradient(90deg, #fffaf1 0%, rgba(255,250,241,.68) 14%, rgba(255,250,241,.05) 42%, rgba(0,0,0,0) 100%); }
.phone-mockup {
  position: absolute;
  right: 8%;
  bottom: -18px;
  width: 205px;
  height: 344px;
  border: 8px solid #151515;
  border-radius: 34px;
  background: #111;
  box-shadow: 0 26px 46px rgba(0,0,0,.28);
  overflow: hidden;
}
.phone-speaker { position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 54px; height: 5px; background: #222; border-radius: 99px; z-index: 2; }
.phone-screen { margin: 0; height: 100%; background: linear-gradient(180deg, #fffbf5, #f7ebdc); padding: 26px 16px 14px; }
.phone-head { display: flex; justify-content: space-between; align-items: center; color: var(--gold-dark); border-bottom: 1px solid #ead9bd; padding-bottom: 10px; }
.phone-head strong { display:block; font-family: var(--serif); font-size: 1.3rem; line-height: .9; }
.phone-head span { display: block; font-size: .42rem; text-transform: uppercase; letter-spacing: .16em; color: #65564c; }
.phone-head i { width: 16px; height: 12px; display: block; border-top: 2px solid #777; border-bottom: 2px solid #777; position: relative; }
.phone-head i::before { content:""; position: absolute; left: 0; top: 3px; width: 100%; border-top: 2px solid #777; }
.phone-tags { margin: 12px 0; display: flex; gap: 8px; font-size: .46rem; color: #756a60; }
.phone-screen h2 { font-family: var(--serif); margin: 0; font-size: 1.15rem; line-height: 1.07; letter-spacing: -.04em; }
.phone-screen p { margin: 8px 0 10px; font-size: .52rem; line-height: 1.4; color: #4d453e; }
.mini-gold, .mini-light { display: block; padding: 8px 10px; border-radius: 6px; font-size: .52rem; font-weight: 800; text-align: center; margin-top: 8px; }
.mini-gold { color: white; background: linear-gradient(135deg, var(--gold-2), var(--gold-dark)); }
.mini-light { background: white; border: 1px solid #ccbda7; }
.phone-icons { display: grid; gap: 8px; margin-top: 14px; font-size: .48rem; color: #62584e; font-weight: 700; }

.section { padding: 42px max(24px, calc((100vw - 1180px) / 2)); }
.section-title { text-align: center; margin: 0 auto 18px; }
.section-title h2, .promos h2, .why h2, .experience h2, .locations h2, .gallery h2, .faq h2, .final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: -.03em;
  color: #443b34;
}
.section-title h2, .promos h2, .why h2, .experience h2, .locations h2, .gallery h2, .faq h2 { font-size: clamp(1.35rem, 2.5vw, 1.85rem); }
.section-title p { margin: 8px 0 0; color: #6f6258; font-size: .9rem; }

.filter-pills { width: min(720px, 100%); margin: 22px auto 32px; padding: 4px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.7); }
.filter-pills button { border: 0; background: transparent; border-radius: 999px; padding: 13px 14px; color: #6f6258; font-weight: 800; font-size: .88rem; }
.filter-pills button.active { color: white; background: linear-gradient(135deg, var(--gold-2), var(--gold-dark)); box-shadow: 0 10px 22px rgba(161,108,31,.2); }
.service-board { display: grid; grid-template-columns: repeat(4, 1fr); align-items: stretch; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: white; box-shadow: 0 16px 46px rgba(80,55,29,.08); }
.service-column { padding: 22px 20px 18px; display: flex; min-height: 500px; flex-direction: column; border-right: 1px solid var(--line); background: rgba(255,253,248,.85); transition: opacity .2s ease, transform .2s ease; }
.service-column:last-child { border-right: 0; }
.service-column.hide { display: none; }
.service-column header { min-height: 58px; display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.service-icon { color: var(--gold); font-size: 1.6rem; line-height: 1; }
.service-column h3 { margin: 0; font-family: var(--serif); font-size: 1.18rem; line-height: 1.08; color: #56483c; }
.service-item { display: grid; grid-template-columns: 52px 1fr; gap: 11px; margin: 12px 0; }
.service-item img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid #eadcc8; }
.service-item b { display: block; font-size: .8rem; color: #2e2a25; margin-bottom: 3px; }
.service-item p { margin: 0; color: #62574c; font-size: .7rem; line-height: 1.37; }
.zones { color: #62574c; font-size: .78rem; line-height: 1.5; padding: 12px; border-radius: 12px; background: #fff8ef; border: 1px solid var(--line); margin-top: 10px; }
.card-cta { margin-top: auto; display: flex; align-items: center; justify-content: center; min-height: 36px; border: 1px solid var(--gold-2); color: #8c6228; border-radius: 7px; font-weight: 800; font-size: .72rem; }
.card-cta::after { content: "☏"; margin-left: 7px; font-size: .9rem; }

.promos { background: linear-gradient(180deg, #f7ead9, #fff9f1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.promo-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 20px; }
.promo-head p { margin: 7px 0 0; color: #675b52; }
.promo-head span { padding: 9px 15px; border: 1px solid var(--gold-2); border-radius: 999px; color: #9a6b30; font-weight: 800; font-size: .72rem; background: rgba(255,255,255,.5); }
.promo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.promo-card { background: white; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 16px 30px rgba(88,62,32,.08); text-align: center; }
.promo-card img { height: 148px; width: 100%; object-fit: cover; }
.promo-card div { padding: 13px 13px 16px; }
.promo-card h3 { min-height: 36px; margin: 0 0 6px; font-size: .88rem; color: #3a342f; }
.promo-card small { display: block; margin-bottom: 8px; color: #786c62; font-weight: 700; }
.promo-card strong { display: block; color: var(--gold-dark); font-size: 1.55rem; line-height: 1.05; }
.promo-card del { display: block; color: #776b61; font-size: .75rem; margin-top: 4px; }
.promo-card p { margin: 10px 0 0; font-size: .75rem; line-height: 1.35; color: #655b52; }
.center-action { display: flex; justify-content: center; margin-top: 28px; }

.why { padding: 36px max(24px, calc((100vw - 1180px) / 2)); text-align: center; background: #fffdf9; border-bottom: 1px solid var(--line); }
.why-row { display: grid; grid-template-columns: repeat(8, 1fr); gap: 24px; margin-top: 28px; }
.why-row article { display: grid; gap: 9px; justify-items: center; color: #5b5148; font-size: .73rem; line-height: 1.25; }
.why-row span { color: var(--gold-2); font-size: 2.05rem; line-height: 1; }
.why-row b { font-weight: 800; }

.experience { padding: 38px max(24px, calc((100vw - 1180px) / 2)); text-align: center; background: linear-gradient(180deg, #fffdf9, #fff8ef); border-bottom: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 30px; position: relative; }
.steps::before { content: ""; position: absolute; left: 8%; right: 8%; top: 42px; border-top: 1px solid #dfc8a7; }
.steps article { position: relative; z-index: 1; display: grid; justify-items: center; }
.steps i { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--gold-2), var(--gold-dark)); color: white; font-style: normal; font-weight: 900; margin-bottom: 8px; }
.steps span { width: 82px; height: 82px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #fffdf8; color: #39342f; font-size: 2.5rem; box-shadow: 0 10px 28px rgba(78,57,31,.08); }
.steps h3 { margin: 12px 0 5px; font-size: .82rem; line-height: 1.25; }
.steps p { margin: 0 auto; max-width: 150px; color: #62584f; font-size: .7rem; line-height: 1.35; }

.locations { background: #fffdf8; }
.locations h2 { text-align: center; margin-bottom: 20px; }
.location-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 38px; }
.location-card { border: 1px solid var(--line); background: white; box-shadow: 0 16px 38px rgba(80,55,29,.08); }
.location-tab { width: 49%; height: 32px; display: grid; place-items: center; background: linear-gradient(135deg, var(--gold-2), var(--gold-dark)); color: white; font-weight: 800; font-size: .78rem; margin: 0 auto 20px; border-radius: 0 0 3px 3px; }
.location-content { display: grid; grid-template-columns: 42% 1fr; gap: 18px; padding: 0 18px 18px; }
.location-content > img { width: 100%; height: 250px; object-fit: cover; border-radius: 4px; }
.location-content h3 { margin: 6px 0 12px; font-family: var(--serif); font-size: 1.1rem; color: #4d4036; }
.location-content p { margin: 0 0 10px; color: #5a5149; font-size: .82rem; line-height: 1.45; }
.location-actions { display: flex; gap: 9px; margin: 14px 0; flex-wrap: wrap; }
.location-actions .btn { min-height: 36px; padding-inline: 12px; font-size: .72rem; }
.available { display: grid; gap: 4px; font-size: .72rem; color: #665a50; }
.available b { color: #443b34; text-transform: uppercase; font-size: .7rem; margin-bottom: 2px; }
.available span { color: #7e6d5b; }

.gallery { padding: 32px max(20px, calc((100vw - 1180px) / 2)); background: #fbf0e2; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.gallery-strip { display: grid; grid-template-columns: 1.2fr .8fr 1fr 1fr 1fr 1fr 1.2fr; gap: 8px; margin-top: 18px; }
.gallery-strip img { width: 100%; height: 180px; object-fit: cover; border-radius: 8px; }
.gallery p { font-size: .72rem; color: #6a5f55; margin: 10px 0 0; }

.faq { background: #fffdf8; }
.faq h2 { text-align: center; margin-bottom: 20px; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 60px; }
.faq-item { border: 1px solid var(--line); border-radius: 6px; background: white; overflow: hidden; }
.faq-item button { width: 100%; min-height: 38px; display: flex; justify-content: space-between; align-items: center; gap: 12px; border: 0; background: white; padding: 0 14px; color: #4d453f; font-weight: 800; font-size: .8rem; text-align: left; }
.faq-item button span { color: #a07436; font-size: 1.1rem; }
.faq-item p { max-height: 0; overflow: hidden; margin: 0; padding: 0 14px; color: #62584f; font-size: .78rem; line-height: 1.45; transition: max-height .25s ease, padding .25s ease; }
.faq-item.open p { max-height: 140px; padding: 0 14px 13px; }
.faq-item.open button span { transform: rotate(45deg); }

.final-cta { position: relative; min-height: 270px; display: flex; align-items: stretch; overflow: hidden; background: #1d1915; }
.final-bg { position: absolute; inset: 0; background:
    linear-gradient(90deg, rgba(17,14,11,.93) 0%, rgba(20,16,12,.78) 45%, rgba(20,16,12,.35) 100%),
    url("https://images.unsplash.com/photo-1600334129128-685c5582fd35?auto=format&fit=crop&w=1600&q=85") center/cover;
  filter: saturate(.9);
}
.final-content { position: relative; z-index: 1; width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 46px 0; display: grid; grid-template-columns: 1fr 330px; gap: 40px; align-items: center; color: white; }
.final-cta h2 { color: white; font-size: clamp(1.5rem, 3vw, 2.2rem); text-transform: none; }
.final-cta p { max-width: 560px; color: #f3e5d1; }
.quick-form { display: grid; gap: 10px; padding: 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; background: rgba(255,255,255,.1); backdrop-filter: blur(14px); }
.quick-form label { display: grid; gap: 6px; font-size: .72rem; color: #f1dec2; font-weight: 800; }
.quick-form input, .quick-form select { width: 100%; min-height: 40px; border: 1px solid rgba(255,255,255,.18); border-radius: 7px; padding: 0 11px; color: #302923; background: #fff9ef; }
.quick-form .btn { width: 100%; border: 0; margin-top: 4px; }

.footer { background: #1f1b17; color: #d8c8ae; border-top: 1px solid rgba(182,132,54,.45); }
.footer-grid { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 34px 0 20px; display: grid; grid-template-columns: 1.25fr 1.7fr 1fr 1.05fr; gap: 38px; }
.footer-brand strong { display:block; font-family: var(--serif); color: var(--gold-2); font-size: 2.35rem; line-height: .9; letter-spacing: .05em; }
.footer-brand span { display: block; text-transform: uppercase; font-size: .6rem; letter-spacing: .3em; margin: 6px 0 16px; }
.footer h3 { color: var(--gold-2); text-transform: uppercase; font-size: .8rem; margin: 0 0 10px; }
.footer p, .footer a { color: #d8c8ae; font-size: .76rem; line-height: 1.6; }
.footer a { display: block; margin: 3px 0; }
.wa-big { width: 64px; height: 64px; display: grid !important; place-items: center; border-radius: 50%; background: #fff9ef; color: #2d241e !important; font-size: 2rem !important; box-shadow: 0 10px 28px rgba(0,0,0,.25); }
.legal { border-top: 1px solid rgba(255,255,255,.08); text-align: center; color: #a89a85; padding: 13px 20px; font-size: .68rem; }
.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 99; width: 56px; height: 56px; display: none; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--gold-2), var(--gold-dark)); color: white; box-shadow: 0 12px 30px rgba(0,0,0,.25); font-size: 1.7rem; }

@media (max-width: 1100px) {
  .header-shell { grid-template-columns: auto auto auto; }
  .main-nav { position: fixed; inset: 78px 0 auto 0; display: none; flex-direction: column; padding: 22px; background: rgba(255,252,247,.98); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  body.menu-open .main-nav { display: flex; }
  .main-nav a.active::after { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .btn-header { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { width: min(780px, calc(100% - 40px)); margin: 0 auto; padding-top: 46px; }
  .hero-image { min-height: 420px; }
  .phone-mockup { right: 24px; }
  .service-board, .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .service-column:nth-child(2n) { border-right: 0; }
  .service-column { border-bottom: 1px solid var(--line); }
  .why-row { grid-template-columns: repeat(4, 1fr); }
  .location-grid, .faq-grid, .final-content, .footer-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps::before { display: none; }
  .gallery-strip { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 700px) {
  .header-shell { min-height: 68px; width: min(100% - 24px, 1180px); }
  .brand strong { font-size: 1.75rem; }
  .brand span { font-size: .48rem; letter-spacing: .26em; }
  .hero h1 { font-size: clamp(2.35rem, 15vw, 3.5rem); }
  .hero-meta { gap: 10px 16px; font-size: .72rem; }
  .hero-benefits, .filter-pills, .service-board, .promo-grid, .why-row, .steps { grid-template-columns: 1fr; }
  .filter-pills { border-radius: 18px; }
  .service-column { border-right: 0; min-height: auto; }
  .promo-head { align-items: flex-start; flex-direction: column; }
  .phone-mockup { width: 170px; height: 286px; right: 16px; bottom: -22px; border-width: 7px; }
  .hero-image { min-height: 330px; }
  .location-content { grid-template-columns: 1fr; }
  .location-tab { width: 82%; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip img { height: 140px; }
  .faq-grid { gap: 8px; }
  .footer-grid { gap: 20px; }
  .floating-whatsapp { display: grid; }
}

/* Datos reales de contacto PAQARI */
.contact-facts {
  padding: 14px max(20px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  background: #1f1b17;
  border-bottom: 1px solid rgba(182,132,54,.35);
}
.contact-facts a {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 10px;
  color: #f6ead7;
  border: 1px solid rgba(208,163,87,.35);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
  background: rgba(255,255,255,.035);
}
.contact-facts a:hover { background: rgba(208,163,87,.12); }
.why-row { grid-template-columns: repeat(auto-fit, minmax(95px, 1fr)); }

@media (max-width: 1100px) {
  .contact-facts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .contact-facts { grid-template-columns: 1fr; padding-inline: 14px; }
}

.promo-card .promo-note { display: block; color: #776b61; font-size: .75rem; margin-top: 6px; font-weight: 700; }

.img-fallback {
  object-fit: cover;
  background: linear-gradient(135deg, #fbf4e8, #d5a352);
}
