/* ============================================================
   Dentistas Mendoza & Asociados — hoja de estilos
   Convertida desde el diseño de Claude Design (fiel a
   ESPECIFICACION-VISUAL-PARA-CODE.md). No rediseñar.
   ============================================================ */

:root {
  --navy: #16304A;
  --navy-deep: #12283D;
  --navy-cta-b: #1E4258;
  --teal: #2F6E7B;
  --teal-hover: #265A66;
  --teal-light-cta: #3A8391;
  --celeste-a: #F0F7FA;
  --celeste-b: #EAF4F8;
  --white: #FFFFFF;
  --body: #3B4A57;
  --body-soft: #546575;
  --on-navy: #C6D6E0;
  --on-navy-2: #B9CAD6;
  --border: #E7EEF2;
  --border-2: #E1EBF0;
  --wa: #25D366;
  --wa-hover: #1FB457;
  --ink-strong: #2C3E4D;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', system-ui, sans-serif;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--navy); }

h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; color: var(--navy); line-height: 1.14; }
h1 { line-height: 1.12; }

img { max-width: 100%; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes slideFade { from { opacity: 0.4; } to { opacity: 1; } }

.container { max-width: 1160px; margin: 0 auto; }
.eyebrow {
  display: inline-block; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; font-size: 13px; color: var(--teal); margin-bottom: 14px;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 54px; width: auto; display: block; mix-blend-mode: multiply; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { font-weight: 600; color: var(--body); font-size: 15px; }
.main-nav a:hover { color: var(--navy); }
.main-nav a.active { font-weight: 700; color: var(--navy); }
.header-actions { display: flex; align-items: center; gap: 12px; }

.btn-wa-outline {
  display: inline-flex; align-items: center; gap: 7px; padding: 10px 16px;
  border: 1.5px solid var(--teal); border-radius: 11px; color: var(--teal);
  font-weight: 700; font-size: 14px; transition: background .2s;
}
.btn-wa-outline:hover { background: var(--celeste-b); color: var(--teal); }

.btn-reservar-header {
  padding: 11px 20px; background: var(--teal); border-radius: 11px; color: #fff;
  font-weight: 700; font-size: 14px; box-shadow: 0 6px 16px rgba(47,110,123,0.28);
  transition: background .2s;
}
.btn-reservar-header:hover { background: var(--teal-hover); color: #fff; }

/* Hamburger (mobile) */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; border-radius: 11px; color: var(--navy);
  align-items: center; justify-content: center;
}
.nav-toggle:hover { background: var(--celeste-b); }

/* ---------------- Buttons ---------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; cursor: pointer; transition: background .2s, gap .2s, color .2s; }
.btn-primary {
  padding: 14px 28px; background: var(--teal); border: none; border-radius: 12px; color: #fff;
  font-weight: 700; font-size: 15px; box-shadow: 0 8px 22px rgba(47,110,123,0.28);
}
.btn-primary:hover { background: var(--teal-hover); color: #fff; }
.btn-outline-navy {
  padding: 14px 30px; border: 1.5px solid var(--navy); border-radius: 12px; color: var(--navy); font-weight: 700; font-size: 15px;
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.btn-wa {
  background: var(--wa); color: #fff; font-weight: 700; border: none; border-radius: 12px;
}
.btn-wa:hover { background: var(--wa-hover); color: #fff; }

/* On-navy variants (CTA cierre) */
.cta-close { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-cta-b) 100%); padding: 76px 24px; text-align: center; }
.cta-close .inner { max-width: 760px; margin: 0 auto; }
.cta-close h2 { font-size: 40px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.cta-close p { font-size: 17.5px; line-height: 1.6; color: var(--on-navy); margin-bottom: 34px; }
.cta-close .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary {
  padding: 16px 34px; background: var(--teal); border-radius: 12px; color: #fff; font-weight: 700; font-size: 16px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.25); transition: background .2s;
}
.btn-cta-primary:hover { background: var(--teal-light-cta); color: #fff; }
.btn-cta-wa {
  padding: 16px 30px; background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 12px; color: #fff; font-weight: 700; font-size: 16px;
  display: inline-flex; align-items: center; gap: 9px; transition: background .2s;
}
.btn-cta-wa:hover { background: rgba(255,255,255,0.18); color: #fff; }

/* ---------------- Sections ---------------- */
.section { padding: 80px 24px; }
.section--white { background: #fff; }
.section--celeste { background: var(--celeste-a); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: 40px; font-weight: 700; margin-bottom: 14px; }
.section-head p { font-size: 17px; line-height: 1.6; color: var(--body-soft); }

/* ---------------- Hero carousel ---------------- */
.hero { position: relative; background: linear-gradient(180deg, var(--celeste-a) 0%, #fff 100%); }
.hero-track { position: relative; max-width: 1600px; margin: 0 auto; }
.hero-slide-link { display: block; position: relative; }
.hero-slide {
  width: 100%; height: auto; display: block; animation: slideFade 0.6s ease;
}
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px;
  border-radius: 50%; border: none; background: rgba(255,255,255,0.85); color: var(--navy);
  font-size: 22px; cursor: pointer; box-shadow: 0 4px 14px rgba(22,48,74,0.15);
  display: flex; align-items: center; justify-content: center; transition: background .2s; z-index: 2;
}
.hero-arrow:hover { background: #fff; }
.hero-arrow.prev { left: 14px; }
.hero-arrow.next { right: 14px; }
.hero-dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 2;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 99px; border: none; cursor: pointer; padding: 0;
  transition: all .3s; background: rgba(22,48,74,0.28);
}
.hero-dot.active { width: 26px; background: var(--teal); }

/* ---------------- Diferenciales ---------------- */
.diffs { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.diff {
  display: flex; gap: 16px; align-items: flex-start; padding: 26px 24px;
  background: var(--celeste-a); border-radius: 16px; border: 1px solid var(--border-2);
}
.diff-icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: #fff;
  display: flex; align-items: center; justify-content: center; color: var(--teal);
}
.diff h3 { font-size: 17px; font-weight: 700; margin-bottom: 5px; }
.diff p { font-size: 14.5px; line-height: 1.5; color: var(--body-soft); }

/* ---------------- Cards de servicio (Inicio) ---------------- */
.cards-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.svc-card {
  background: #fff; border-radius: 18px; border: 1px solid var(--border); overflow: hidden;
  box-shadow: 0 10px 34px rgba(22,48,74,0.05); display: flex; flex-direction: column;
  transition: box-shadow .2s;
}
.svc-card:hover { box-shadow: 0 16px 44px rgba(22,48,74,0.12); }
.svc-photo {
  height: 150px; position: relative; display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(45deg, var(--celeste-b), var(--celeste-b) 12px, var(--border-2) 12px, var(--border-2) 24px);
}
.svc-photo .icon-badge {
  width: 56px; height: 56px; border-radius: 14px; background: #fff; display: flex;
  align-items: center; justify-content: center; color: var(--teal); box-shadow: 0 6px 18px rgba(22,48,74,0.08);
}
.photo-tag { position: absolute; bottom: 8px; right: 10px; font-family: monospace; font-size: 10px; color: #8aa4b0; }
.svc-card .body { padding: 24px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.svc-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 9px; }
.svc-card p { font-size: 14.5px; line-height: 1.55; color: var(--body-soft); margin-bottom: 20px; flex: 1; }
.card-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 14.5px; color: var(--teal); transition: gap .2s, color .2s; align-self: flex-start; }
.card-link:hover { gap: 11px; color: var(--navy); }

/* ---------------- Por qué elegirnos ---------------- */
.two-col { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col h2 { font-size: 38px; font-weight: 700; margin-bottom: 20px; }
.lead { font-size: 16.5px; line-height: 1.65; color: var(--body-soft); margin-bottom: 30px; }
.check-list { display: flex; flex-direction: column; gap: 16px; }
.check-item { display: flex; gap: 13px; align-items: center; }
.check-badge {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--celeste-b);
  display: flex; align-items: center; justify-content: center; color: var(--teal);
}
.check-item span.txt { font-size: 16px; font-weight: 600; color: var(--ink-strong); }
.photo-placeholder {
  position: relative; border-radius: 22px; overflow: hidden; border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(45deg, var(--celeste-b), var(--celeste-b) 16px, var(--border-2) 16px, var(--border-2) 32px);
}
.photo-placeholder .label {
  font-family: monospace; font-size: 13px; color: #7c98a5; text-align: center; line-height: 1.6;
  background: rgba(255,255,255,0.8); padding: 8px 14px; border-radius: 8px;
}

/* ---------------- Horario/Ubicación cards ---------------- */
.info-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.info-card {
  background: #fff; border-radius: 18px; border: 1px solid var(--border); padding: 34px 32px;
  box-shadow: 0 10px 30px rgba(22,48,74,0.05);
}
.info-card .head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.info-card .head h3 { font-size: 21px; font-weight: 700; }
.info-icon {
  width: 42px; height: 42px; border-radius: 11px; background: var(--celeste-b);
  display: flex; align-items: center; justify-content: center; color: var(--teal); flex-shrink: 0;
}
.schedule-row { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid #EEF3F6; }
.schedule-row:last-child { border-bottom: none; }
.schedule-row .day { font-weight: 600; color: var(--ink-strong); }
.schedule-row .time { color: var(--teal); font-weight: 700; }
.schedule-row .closed { color: #94A6B2; font-weight: 600; }

/* ---------------- Page hero (internal pages) ---------------- */
.page-hero { background: linear-gradient(180deg, var(--celeste-a) 0%, #fff 100%); padding: 70px 24px 56px; text-align: center; }
.page-hero .inner { max-width: 720px; margin: 0 auto; }
.page-hero h1 { font-size: 46px; font-weight: 700; margin-bottom: 18px; }
.page-hero p { font-size: 18px; line-height: 1.6; color: var(--body-soft); }

/* ---------------- Service detail (Servicios) ---------------- */
.svc-detail-list { max-width: 1080px; margin: 0 auto; display: flex; flex-direction: column; gap: 28px; }
.svc-detail {
  display: grid; grid-template-columns: 1fr 1.25fr; gap: 0; background: #fff; border-radius: 20px;
  border: 1px solid var(--border); overflow: hidden; box-shadow: 0 12px 34px rgba(22,48,74,0.05);
}
.svc-detail .img {
  min-height: 280px; display: flex; align-items: center; justify-content: center; position: relative;
  background: repeating-linear-gradient(45deg, var(--celeste-b), var(--celeste-b) 14px, var(--border-2) 14px, var(--border-2) 28px);
}
.svc-detail .img .icon-badge {
  width: 64px; height: 64px; border-radius: 16px; background: #fff; display: flex; align-items: center;
  justify-content: center; color: var(--teal); box-shadow: 0 8px 22px rgba(22,48,74,0.08);
}
.svc-detail .img .photo-tag {
  bottom: 10px; left: 50%; right: auto; transform: translateX(-50%); font-size: 11px; color: #7c98a5;
  background: rgba(255,255,255,0.85); padding: 5px 10px; border-radius: 7px; white-space: nowrap;
}
.svc-detail .txt { padding: 40px 42px; display: flex; flex-direction: column; justify-content: center; }
.svc-detail.reverse .img { order: 1; }
.svc-detail.reverse .txt { order: 0; }
.chip {
  display: inline-block; align-self: flex-start; font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal); background: var(--celeste-b); padding: 5px 12px;
  border-radius: 99px; margin-bottom: 14px;
}
.svc-detail h2 { font-size: 29px; font-weight: 700; margin-bottom: 12px; }
.svc-detail .txt > p { font-size: 16px; line-height: 1.65; color: var(--body-soft); margin-bottom: 20px; }
.point-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 26px; }
.point-list li { display: flex; gap: 10px; align-items: center; font-size: 15px; color: var(--ink-strong); }
.svc-detail .btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-sm-primary { padding: 12px 24px; background: var(--teal); border-radius: 11px; color: #fff; font-weight: 700; font-size: 14.5px; box-shadow: 0 6px 16px rgba(47,110,123,0.25); transition: background .2s; }
.btn-sm-primary:hover { background: var(--teal-hover); color: #fff; }
.btn-sm-outline { padding: 12px 22px; border: 1.5px solid var(--teal); border-radius: 11px; color: var(--teal); font-weight: 700; font-size: 14.5px; transition: background .2s; }
.btn-sm-outline:hover { background: var(--celeste-b); color: var(--teal); }

/* ---------------- Nosotros ---------------- */
.about-intro { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 52px; align-items: center; }
.about-intro h1 { font-size: 44px; font-weight: 700; margin-bottom: 20px; }
.about-intro p { font-size: 17px; line-height: 1.7; color: var(--body-soft); margin-bottom: 16px; }
.about-intro p:last-child { margin-bottom: 0; }
.about-intro strong { color: var(--navy); }
.values-grid, .team-grid { max-width: 1080px; margin: 0 auto; display: grid; gap: 24px; }
.values-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.team-grid { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.value-card { background: var(--celeste-a); border-radius: 18px; border: 1px solid var(--border-2); padding: 34px 30px; }
.value-card .icon-box { width: 52px; height: 52px; border-radius: 14px; background: #fff; display: flex; align-items: center; justify-content: center; color: var(--teal); margin-bottom: 20px; box-shadow: 0 6px 16px rgba(22,48,74,0.06); }
.value-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.value-card p { font-size: 15px; line-height: 1.6; color: var(--body-soft); }
.team-card { background: #fff; border-radius: 18px; border: 1px solid var(--border); overflow: hidden; box-shadow: 0 10px 30px rgba(22,48,74,0.05); }
.team-photo { height: 230px; display: flex; align-items: center; justify-content: center; background: repeating-linear-gradient(45deg, var(--celeste-b), var(--celeste-b) 14px, var(--border-2) 14px, var(--border-2) 28px); }
.team-photo .label { font-family: monospace; font-size: 11px; color: #7c98a5; background: rgba(255,255,255,0.85); padding: 5px 10px; border-radius: 7px; text-align: center; }
.team-card .body { padding: 22px 24px 26px; }
.team-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.team-card .role { font-size: 14px; color: var(--teal); font-weight: 600; }
.testimonials-placeholder {
  max-width: 900px; margin: 0 auto; border: 2px dashed #CBDDE6; border-radius: 20px;
  padding: 52px 40px; text-align: center; background: #F7FBFD;
}
.testimonials-placeholder h2 { font-size: 26px; font-weight: 700; margin-bottom: 10px; color: #5A7684; }
.testimonials-placeholder p { font-family: monospace; font-size: 13px; color: #7c98a5; line-height: 1.7; }

/* ---------------- Reservar (form) ---------------- */
.reservar-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; align-items: start; }
.form-card { background: #fff; border-radius: 20px; border: 1px solid var(--border); padding: 38px 36px; box-shadow: 0 14px 40px rgba(22,48,74,0.06); }
.form-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-full { grid-column: 1 / -1; }
.form-card label { display: block; font-weight: 700; font-size: 14px; color: var(--ink-strong); margin-bottom: 7px; }
.form-card input, .form-card select, .form-card textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid #DCE7ED; border-radius: 11px;
  font-size: 15px; color: var(--ink-strong); background: #FBFDFE; font-family: 'Nunito Sans', sans-serif;
}
.form-card textarea { resize: vertical; }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(47,110,123,0.14);
}
.form-card input.invalid, .form-card select.invalid, .form-card textarea.invalid { border-color: #D9534F; background: #FFF7F7; }
.field-error { display: none; color: #C0392B; font-size: 12.5px; margin-top: 5px; font-weight: 600; }
.field-error.show { display: block; }
.btn-submit {
  width: 100%; margin-top: 24px; padding: 16px; background: var(--teal); border: none; border-radius: 12px;
  color: #fff; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 16px; cursor: pointer;
  box-shadow: 0 10px 24px rgba(47,110,123,0.28); transition: background .2s;
}
.btn-submit:hover { background: var(--teal-hover); }
.form-note { text-align: center; font-size: 13px; color: #8698A5; margin-top: 14px; }
.form-success {
  display: none; margin-top: 20px; padding: 18px 20px; border-radius: 12px;
  background: #EAF7EE; border: 1px solid #BFE6CC; color: #1E6B3A; font-size: 15px; line-height: 1.55;
}
.form-success.show { display: block; animation: fadeUp .4s ease; }
.form-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-wa { background: var(--navy); border-radius: 18px; padding: 30px 28px; color: #D5E3EC; }
.sidebar-wa h3 { color: #fff; font-size: 19px; font-weight: 700; margin-bottom: 18px; }
.sidebar-wa p { font-size: 15px; line-height: 1.6; margin-bottom: 20px; }
.sidebar-wa a {
  display: flex; align-items: center; justify-content: center; gap: 9px; padding: 14px;
  background: var(--wa); border-radius: 12px; color: #fff; font-weight: 700; font-size: 15.5px; transition: background .2s;
}
.sidebar-wa a:hover { background: var(--wa-hover); color: #fff; }
.sidebar-info { background: #fff; border-radius: 18px; border: 1px solid var(--border); padding: 28px 26px; box-shadow: 0 10px 30px rgba(22,48,74,0.05); }
.sidebar-info h3 { font-size: 18px; font-weight: 700; margin-bottom: 18px; }
.sidebar-info .rows { display: flex; flex-direction: column; gap: 16px; }
.sidebar-info .row { display: flex; gap: 12px; }
.sidebar-info .row .ic { flex-shrink: 0; color: var(--teal); }
.sidebar-info .row p.t { font-weight: 700; color: var(--ink-strong); font-size: 14.5px; }
.sidebar-info .row p, .sidebar-info .row a { font-size: 14px; color: var(--body-soft); }
.sidebar-info .row a { color: var(--teal); }

/* ---------------- Contacto ---------------- */
.contact-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.15fr; gap: 28px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 18px; }
.contact-card { background: #fff; border-radius: 16px; border: 1px solid var(--border); padding: 24px; display: flex; gap: 16px; align-items: flex-start; box-shadow: 0 8px 24px rgba(22,48,74,0.04); }
.contact-card .ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--celeste-b); display: flex; align-items: center; justify-content: center; color: var(--teal); }
.contact-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 15px; line-height: 1.55; color: var(--body-soft); }
.contact-card a { color: var(--teal); }
.contact-card.wa { background: var(--wa); box-shadow: 0 10px 26px rgba(37,211,102,0.28); align-items: center; transition: background .2s; }
.contact-card.wa:hover { background: var(--wa-hover); }
.contact-card.wa .ic { background: rgba(255,255,255,0.22); }
.contact-card.wa h3 { color: #fff; margin-bottom: 2px; }
.contact-card.wa p { color: #EAFBF0; font-weight: 600; }
.contact-media { display: flex; flex-direction: column; gap: 20px; }
.map-wrap { border-radius: 18px; overflow: hidden; border: 1px solid var(--border-2); height: 340px; position: relative; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-pending-note { font-family: monospace; font-size: 11px; color: #7c98a5; text-align: center; padding: 8px; }
.media-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.media-box { background: var(--celeste-a); border-radius: 16px; border: 1px solid var(--border-2); padding: 24px; text-align: center; }
.media-box.center { display: flex; flex-direction: column; justify-content: center; }
.media-box h3 { font-size: 16px; font-weight: 700; margin-bottom: 14px; }
.qr-box { width: 130px; height: 130px; margin: 0 auto 12px; border-radius: 12px; background: #fff; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.qr-box img { width: 100%; height: 100%; object-fit: contain; }
.qr-box.pending { border: 1.5px dashed #C0D4DD; }
.qr-box.pending span { font-family: monospace; font-size: 10px; color: #8aa4b0; text-align: center; padding: 8px; }
.media-box .cap { font-size: 13px; color: #7c98a5; }
.social-row { display: flex; gap: 12px; justify-content: center; margin-bottom: 12px; }
.social-pending { width: 42px; height: 42px; border-radius: 11px; background: #fff; border: 1.5px dashed #C0D4DD; display: flex; align-items: center; justify-content: center; color: #9DB4BF; }
.media-box .pending-cap { font-size: 12px; color: #7c98a5; font-family: monospace; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--navy-deep); padding: 56px 24px 30px; color: var(--on-navy-2); }
.footer-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-logo { height: 80px; width: auto; background: #fff; padding: 10px 14px; border-radius: 12px; display: block; margin-bottom: 18px; }
.footer-about p { font-size: 14.5px; line-height: 1.65; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; }
.footer-links a, .footer-contact a, .footer-contact span { color: var(--on-navy-2); font-size: 14.5px; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-bottom { max-width: 1160px; margin: 36px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 13px; color: #8CA1B0; }

/* ---------------- Floating WhatsApp ---------------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60; width: 58px; height: 58px;
  border-radius: 50%; background: var(--wa); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(37,211,102,0.45); transition: transform .2s, background .2s;
}
.wa-float:hover { background: var(--wa-hover); transform: scale(1.06); }

/* ---------------- Admin ---------------- */
.admin-shell { max-width: 1080px; margin: 0 auto; padding: 40px 24px 60px; }
.admin-login { max-width: 400px; margin: 60px auto; background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 36px 32px; box-shadow: 0 14px 40px rgba(22,48,74,0.06); }
.admin-login h1 { font-size: 26px; margin-bottom: 8px; }
.admin-login p { font-size: 14px; color: var(--body-soft); margin-bottom: 22px; }
.admin-login input { width: 100%; padding: 13px 15px; border: 1.5px solid #DCE7ED; border-radius: 11px; font-size: 15px; margin-bottom: 14px; font-family: 'Nunito Sans', sans-serif; }
.admin-login input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(47,110,123,0.14); }
.admin-topbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 8px; flex-wrap: wrap; }
.admin-topbar h1 { font-size: 30px; }
.admin-tabs { display: flex; gap: 8px; border-bottom: 1px solid var(--border); margin: 20px 0 26px; flex-wrap: wrap; }
.admin-tab { padding: 12px 18px; border: none; background: none; cursor: pointer; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14.5px; color: var(--body-soft); border-bottom: 2px solid transparent; }
.admin-tab.active { color: var(--navy); border-bottom-color: var(--teal); }
.admin-panel { display: none; }
.admin-panel.active { display: block; }
.admin-scroll { max-height: 62vh; overflow-y: auto; padding-right: 6px; border: 1px solid var(--border); border-radius: 14px; padding: 16px; background: #fff; }
.admin-item { background: var(--celeste-a); border: 1px solid var(--border-2); border-radius: 14px; padding: 18px 20px; margin-bottom: 14px; }
.admin-item:last-child { margin-bottom: 0; }
.admin-item h3 { font-size: 17px; margin-bottom: 8px; }
.admin-item .meta { font-size: 13px; color: var(--body-soft); margin-bottom: 4px; }
.admin-item .row-actions { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.admin-field { margin-bottom: 12px; }
.admin-field label { display: block; font-weight: 700; font-size: 13px; color: var(--ink-strong); margin-bottom: 6px; }
.admin-field input, .admin-field textarea, .admin-field select { width: 100%; padding: 11px 13px; border: 1.5px solid #DCE7ED; border-radius: 10px; font-size: 14px; font-family: 'Nunito Sans', sans-serif; }
.admin-field input:focus, .admin-field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(47,110,123,0.14); }
.btn-mini { padding: 8px 14px; border-radius: 9px; font-size: 13px; font-weight: 700; cursor: pointer; border: none; font-family: 'Nunito Sans', sans-serif; }
.btn-mini.save { background: var(--teal); color: #fff; }
.btn-mini.save:hover { background: var(--teal-hover); }
.btn-mini.del { background: #FDECEC; color: #C0392B; }
.btn-mini.del:hover { background: #F8D7D7; }
.btn-mini.ghost { background: #fff; border: 1.5px solid var(--border); color: var(--navy); }
.btn-mini.ghost:hover { background: var(--celeste-b); }
.admin-empty { text-align: center; color: var(--body-soft); font-size: 14px; padding: 30px; }
.admin-note { font-size: 12.5px; color: #8698A5; margin-top: 10px; line-height: 1.55; }
.reserva-item { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 16px 18px; margin-bottom: 12px; }
.reserva-item .when { font-size: 12px; color: #8698A5; margin-bottom: 6px; }
.reserva-item .name { font-weight: 700; color: var(--navy); font-size: 16px; }
.reserva-item .detail { font-size: 14px; color: var(--body-soft); margin-top: 4px; line-height: 1.5; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .two-col { gap: 40px; }
}

@media (max-width: 900px) {
  .about-intro { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .reservar-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .svc-detail { grid-template-columns: 1fr; }
  .svc-detail .img { order: 0 !important; min-height: 220px; }
  .svc-detail .txt { order: 1 !important; padding: 32px 28px; }
  .two-col { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
    gap: 0; background: #fff; border-bottom: 1px solid var(--border); box-shadow: 0 12px 24px rgba(22,48,74,0.08);
    padding: 8px 0; display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 24px; font-size: 16px; }
  .header-actions .btn-wa-outline { display: none; }
  .section { padding: 56px 20px; }
  .section-head h2 { font-size: 28px; }
  .two-col h2 { font-size: 28px; }
  .page-hero { padding: 52px 20px 40px; }
  .page-hero h1 { font-size: 32px; }
  .about-intro h1 { font-size: 32px; }
  .cta-close { padding: 56px 20px; }
  .cta-close h2 { font-size: 28px; }
  .form-fields { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-arrow { width: 38px; height: 38px; font-size: 18px; }
}

@media (max-width: 480px) {
  .header-inner { padding: 12px 18px; gap: 12px; }
  .brand img { height: 44px; }
  .btn-reservar-header { padding: 10px 14px; font-size: 13px; }
  .media-row { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 28px; }
}
