:root {
  --brand-blue: #1436ee;
  --brand-blue-dark: #0f28b8;
  --brand-blue-soft: #eaedfe;
  --brand-yellow: #fdf300;
  --brand-yellow-soft: #fffcdc;
  --ink: #070707;
  --body-text: #333333;
  --gray: #5b5b66;
  --line: #e6e6ec;
  --white: #ffffff;
  --success: #1ba672;
  --radius: 8px;
  --shadow: 0 10px 30px rgba(7, 7, 7, 0.08);
  --font: "Rubik", "Verdana", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.43;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

.container { width: min(1100px, 92vw); margin: 0 auto; }
.container.narrow { width: min(680px, 92vw); }

h1, h2, h3 { line-height: 1.1; letter-spacing: 0; font-weight: 800; color: var(--ink); }

a { color: var(--brand-blue); text-decoration: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font: inherit; font-weight: 700; cursor: pointer; text-transform: none;
  border: 0; border-radius: 4px; padding: 0.85rem 1.6rem;
  transition: transform 0.06s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand-blue); color: #fff; }
.btn-primary:hover { background: var(--brand-blue-dark); }
.btn-primary:disabled { background: #aeb6e8; cursor: not-allowed; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--brand-blue); color: var(--brand-blue); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.9rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: var(--brand-yellow);
  border-bottom: 2px solid var(--ink);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 0; }
.brand img { height: 68px; display: block; }
.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav a { color: var(--ink); font-weight: 700; font-size: 0.95rem; }
.nav a.btn-primary { color: #fff; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-weight: 800; font-size: 1rem; color: var(--ink);
  padding: 0.2rem 0.6rem; border: 2px solid var(--ink); border-radius: 4px;
}
.nav-phone:hover { background: var(--ink); color: var(--brand-yellow); }
.nav-or { color: var(--ink); font-weight: 600; font-style: italic; font-size: 0.9rem; opacity: 0.65; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, #050a35 0%, #1436ee 65%, #050a35 100%);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(1.5rem, 3vw, 2.25rem);
}
.hero h1 { color: #fff; }
.hero h1.nowrap { white-space: nowrap; }
.hero .lead { color: rgba(255, 255, 255, 0.88); }
@media (max-width: 900px) { .hero h1.nowrap { white-space: normal; } }
.hero-inner { max-width: 980px; }

/* Hero dividido: texto + video lado a lado (apila en móvil) */
.hero-split { max-width: none; display: grid; grid-template-columns: 1.05fr 1fr; gap: 2.2rem; align-items: center; }
.hero-copy { max-width: 540px; }
.hero-media { width: 100%; }
@media (max-width: 820px) {
  .hero-split { grid-template-columns: 1fr; gap: 1.4rem; }
  .hero-copy { max-width: 100%; }
}
.eyebrow {
  display: inline-block; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--brand-blue);
  background: var(--brand-blue-soft); padding: 0.35rem 0.8rem; border-radius: 999px;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 2.8rem); margin: 1.2rem 0 0.6rem; }
.accent {
  background: var(--brand-yellow); color: var(--ink);
  padding: 0 0.25em; border-radius: 4px; box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.lead { font-size: clamp(1rem, 2vw, 1.15rem); color: var(--gray); margin: 0 0 1.8rem; line-height: 1.5; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.price-tag { color: var(--gray); font-size: 0.95rem; }
.price-tag strong { color: var(--ink); }

/* ---------- Sections ---------- */
.section { padding: clamp(3rem, 7vw, 5rem) 0; }
.section-muted { background: #f1f1f5; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); text-align: center; margin: 0 0 0.4rem; font-weight: 800; }
.section-title::after {
  content: ""; display: block; width: 56px; height: 4px;
  background: var(--brand-yellow); margin: 0.7rem auto 0; border-radius: 2px;
}
.section-sub { text-align: center; color: var(--gray); margin: 0 0 2rem; }

/* ---------- Video ---------- */
.section-video { padding-top: clamp(2rem, 4vw, 3.5rem); }
.video-cta {
  margin-top: 1.6rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
}
.video-cta-text { margin: 0; font-size: 1.15rem; font-weight: 600; color: var(--ink); }
.video-frame {
  margin-top: 1.8rem; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); aspect-ratio: 16 / 9; background: var(--ink);
}
.video-frame iframe, .video-frame video { width: 100%; height: 100%; border: 0; display: block; }
.video-placeholder {
  width: 100%; height: 100%; display: grid; place-content: center; gap: 0.4rem; text-align: center;
  color: #fff; background: linear-gradient(135deg, var(--ink), #1a1a2e);
}
.video-placeholder .play {
  width: 64px; height: 64px; margin: 0 auto; border-radius: 50%;
  display: grid; place-content: center; font-size: 1.5rem;
  background: var(--brand-blue); color: #fff;
}
.video-placeholder small { color: #b9b9c9; }
.video-placeholder code { background: rgba(255,255,255,0.12); padding: 0.1em 0.4em; border-radius: 6px; }

/* ---------- Benefits ---------- */
.benefits {
  list-style: none; padding: 0; margin: 2rem 0 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem;
}
.benefits li {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.benefits li:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.benefit-ico { font-size: 1.8rem; }
.benefits h3 { margin: 0.7rem 0 0.3rem; font-size: 1.15rem; }
.benefits p { margin: 0; color: var(--gray); }

/* ---------- How it works ---------- */
.steps-how {
  list-style: none; padding: 0; margin: 2rem 0 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem;
  counter-reset: none;
}
.steps-how li { display: flex; align-items: center; gap: 0.7rem; font-weight: 600; }
.steps-how span {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: var(--brand-blue); color: #fff; display: grid; place-content: center; font-weight: 800;
}

/* ---------- Stepper ---------- */
.stepper {
  margin-top: 1.5rem; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(1.2rem, 4vw, 2rem);
}
.stepper-nav {
  list-style: none; display: flex; gap: 0.5rem; padding: 0; margin: 0 0 1.8rem;
  counter-reset: none;
}
.stepper-nav li {
  flex: 1; display: flex; align-items: center; gap: 0.5rem; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: var(--gray); text-align: center;
  padding-bottom: 0.7rem; border-bottom: 3px solid var(--line);
}
.stepper-nav li span {
  width: 26px; height: 26px; flex: none; border-radius: 50%; background: var(--line); color: var(--gray);
  display: grid; place-content: center; font-size: 0.85rem;
}
.stepper-nav li.is-active { color: var(--brand-blue); border-bottom-color: var(--brand-blue); }
.stepper-nav li.is-active span { background: var(--brand-blue); color: #fff; }
.stepper-nav li.is-done span { background: var(--success); color: #fff; }

.step { display: none; animation: fade 0.25s ease; }
.step.is-active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.step-title { margin: 0 0 1.2rem; font-size: 1.3rem; }

label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 1rem; }
input, select, textarea {
  width: 100%; margin-top: 0.35rem; padding: 0.7rem 0.85rem; font: inherit;
  border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--brand-blue); box-shadow: 0 0 0 3px var(--brand-blue-soft);
}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 1rem; }
.hint { color: var(--gray); font-size: 0.85rem; margin: -0.4rem 0 1rem; }

.step-error { color: #d23b3b; font-size: 0.9rem; min-height: 1.2em; margin: 0.2rem 0; }
.step-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; }

/* ---------- Address group (street + apt + city/state/zip) ---------- */
.address-group { border: 0; padding: 0; margin: 0 0 1rem; display: block; }
.address-group legend { font-weight: 700; font-size: 0.9rem; padding: 0; margin-bottom: 0.4rem; }
.address-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.8rem; }
.address-group label small { font-weight: 400; color: var(--gray); margin-left: 0.3rem; }
.addr-grid { display: grid; grid-template-columns: 1.4fr 0.7fr 1fr; gap: 0 1rem; }
@media (max-width: 560px) {
  .addr-grid { grid-template-columns: 1fr 1fr; }
  .addr-grid label:first-child { grid-column: 1 / -1; }
}

/* ---------- Checkbox group (servicios) ---------- */
.checkbox-group { border: 0; padding: 0; margin: 0 0 1rem; display: grid; gap: 0.6rem; }
.checkbox-group legend { font-weight: 700; font-size: 0.9rem; padding: 0; margin-bottom: 0.25rem; }
.checkbox-group legend small { font-weight: 500; color: var(--gray); margin-left: 0.3rem; }
.checkbox {
  display: flex; align-items: flex-start; gap: 0.8rem; cursor: pointer;
  padding: 0.9rem 1rem; border: 1px solid var(--line); border-radius: 12px; background: #fff;
  margin-bottom: 0; font-weight: 500;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.checkbox:hover { border-color: var(--brand-blue); }
.checkbox:has(input:checked) {
  border-color: var(--brand-blue); background: var(--brand-blue-soft);
  box-shadow: 0 0 0 2px rgba(20, 54, 238, 0.12);
}
.checkbox input[type="checkbox"] {
  width: 20px; height: 20px; padding: 0; margin: 2px 0 0; border: 0; border-radius: 0;
  background: transparent; accent-color: var(--brand-blue); flex: none; cursor: pointer;
}
.checkbox input[type="checkbox"]:focus {
  box-shadow: none; outline: 2px solid var(--brand-blue); outline-offset: 2px;
}
.checkbox span { display: block; line-height: 1.4; }
.checkbox span strong { display: block; color: var(--ink); font-size: 0.98rem; }
.checkbox span small { display: block; color: var(--gray); font-size: 0.85rem; margin-top: 0.1rem; }

/* ---------- Slots ---------- */
.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 0.6rem; margin: 0.5rem 0; }
.slot {
  padding: 0.6rem; border: 1px solid var(--line); border-radius: 10px; background: #fff;
  font-weight: 700; cursor: pointer; color: var(--ink);
}
.slot:hover { border-color: var(--brand-blue); }
.slot.is-selected { background: var(--brand-blue); border-color: var(--brand-blue); color: #fff; }
.slots-msg { color: var(--gray); font-size: 0.9rem; }

/* ---------- Summary & payment ---------- */
.summary { border: 1px solid var(--line); border-radius: 12px; padding: 1rem 1.2rem; margin-bottom: 1.2rem; }
.summary div { display: flex; justify-content: space-between; padding: 0.35rem 0; color: var(--gray); }
.summary div strong { color: var(--ink); }
.summary-total { border-top: 1px dashed var(--line); margin-top: 0.4rem; padding-top: 0.7rem !important; font-size: 1.1rem; }
.pay-provider { font-size: 0.85rem; color: var(--gray); margin-bottom: 0.6rem; }
.pay-provider .badge {
  display: inline-block; background: var(--brand-blue-soft); color: var(--brand-blue);
  font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 999px;
}
.payment-mount {
  border: 1px solid var(--line); border-radius: 12px; padding: 1rem; min-height: 56px;
}
.sim-row { display: flex; gap: 0.8rem; }
.sim-note { color: var(--gray); font-size: 0.82rem; margin-top: 0.6rem; }

/* ---------- Confirmation ---------- */
.step-done { text-align: center; }
.check {
  width: 70px; height: 70px; margin: 0 auto 1rem; border-radius: 50%;
  background: var(--success); color: #fff; display: grid; place-content: center; font-size: 2.2rem;
}

/* ---------- Social proof / testimonials ---------- */
.social { margin-top: 2rem; }
.social-photo { margin: 0 0 1.6rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.social-photo img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 16 / 7; }
.social-photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 0.8rem 1rem;
  color: #fff; font-size: 0.85rem; font-weight: 600;
  background: linear-gradient(transparent, rgba(7, 7, 7, 0.75));
}
.testimonials { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
/* el atributo hidden pierde contra el display:grid de arriba; este guard lo restaura */
.testimonials[hidden] { display: none; }
.testimonial { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow); }
.testimonial .stars { color: #f5a623; letter-spacing: 2px; font-size: 1.05rem; }
.testimonial .star-empty { color: #d9d9e0; }
.testimonial p { margin: 0.6rem 0 1.1rem; color: var(--ink); line-height: 1.6; }
.who { display: flex; align-items: center; gap: 0.7rem; }
.avatar {
  width: 42px; height: 42px; flex: none; border-radius: 50%; background: var(--brand-blue); color: #fff;
  display: grid; place-content: center; font-weight: 800;
}
.who small { display: block; color: var(--gray); }
@media (max-width: 720px) { .social-photo img { aspect-ratio: 16 / 10; } }

/* ---------- Reviews dinámicos (paginación + fotos de trabajos) ---------- */
.testimonial-loading, .testimonial-empty {
  list-style: none; padding: 2rem 1rem; text-align: center;
  color: var(--gray); grid-column: 1 / -1;
}
.testimonial-empty p { margin: 0; }

/* Avatar como <img> (real o ilustración de Thumbtack); fallback a inicial */
.avatar-img { padding: 0; overflow: hidden; background: var(--brand-blue-soft); }
.avatar-img img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; }
.avatar-fallback::before { content: attr(data-initial); }

/* Thumbnails de fotos que subió el cliente */
.testimonial-images {
  display: flex; gap: 0.4rem; margin: 0.4rem 0 1rem; flex-wrap: wrap;
}
.testimonial-thumb {
  display: block; width: 64px; height: 64px;
  border-radius: 8px; overflow: hidden; border: 1px solid var(--line);
  transition: transform 0.12s ease, border-color 0.12s ease;
  padding: 0; background: none; cursor: pointer; /* también funciona como <button> */
}
.testimonial-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testimonial-thumb:hover { transform: scale(1.04); border-color: var(--brand-blue); }
.testimonial-thumb.more {
  display: grid; place-content: center; background: var(--brand-blue-soft);
  color: var(--brand-blue); font-weight: 700; font-size: 0.85rem;
}

/* Lightbox: modal para las fotos de las reseñas */
.review-lightbox { position: fixed; inset: 0; z-index: 1000; display: none; }
.review-lightbox.is-open { display: block; }
.review-lightbox .lb-backdrop { position: absolute; inset: 0; background: rgba(7, 7, 7, 0.85); }
.review-lightbox .lb-body {
  position: relative; margin: 0; height: 100%;
  display: grid; place-items: center; padding: 3rem 4.5rem;
}
.review-lightbox .lb-img {
  /* La foto ocupa el 80% de la pantalla en desktop (90% en móvil, ver abajo);
     object-fit:contain escala hacia arriba o abajo manteniendo proporción */
  width: 80vw; height: 80vh; object-fit: contain;
  border-radius: var(--radius);
}
.review-lightbox .lb-close {
  position: absolute; top: 18px; right: 18px; width: 42px; height: 42px;
  border-radius: 50%; border: 0; cursor: pointer; font-size: 1.1rem; line-height: 1;
  background: #fff; color: var(--ink); box-shadow: var(--shadow);
  display: grid; place-content: center;
}
.review-lightbox .lb-close:hover { background: var(--brand-yellow); }
.review-lightbox .lb-prev, .review-lightbox .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; border: 0; cursor: pointer;
  font-size: 1.6rem; line-height: 1; background: rgba(255, 255, 255, 0.92); color: var(--ink);
  display: grid; place-content: center;
}
.review-lightbox .lb-prev { left: 14px; }
.review-lightbox .lb-next { right: 14px; }
.review-lightbox .lb-prev:hover, .review-lightbox .lb-next:hover { background: var(--brand-yellow); }
.review-lightbox .lb-count {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  color: #fff; font-size: 0.9rem; opacity: 0.85;
}
body.lb-no-scroll { overflow: hidden; }
@media (max-width: 768px) {
  .review-lightbox .lb-body { padding: 2.5rem 0.5rem; }
  .review-lightbox .lb-img { width: 90vw; height: 90vh; }
  .review-lightbox .lb-close { top: 10px; right: 10px; }
  .review-lightbox .lb-prev { left: 6px; }
  .review-lightbox .lb-next { right: 6px; }
}

/* Carrusel de trabajos realizados (una línea, flechas en los extremos) */
.works-carousel { position: relative; margin-top: 1.6rem; }
.works-track {
  display: flex; gap: 0.6rem; overflow-x: auto; scroll-behavior: smooth;
  scrollbar-width: none; scroll-snap-type: x proximity; padding: 0.2rem;
}
.works-track::-webkit-scrollbar { display: none; }
.work-thumb {
  flex: 0 0 auto; width: 172px; aspect-ratio: 3 / 4; scroll-snap-align: start;
  padding: 0; border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  background: var(--brand-blue-soft); cursor: pointer;
}
.work-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.15s ease; }
.work-thumb:hover img { transform: scale(1.05); }
.works-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 42px; height: 42px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--brand-blue); color: #fff; font-size: 1.5rem; line-height: 1;
  display: grid; place-content: center; box-shadow: var(--shadow);
}
.works-nav:hover { background: var(--brand-blue-dark); }
.works-prev { left: -12px; }
.works-next { right: -12px; }
@media (max-width: 640px) {
  .work-thumb { width: 132px; }
  .works-prev { left: -6px; }
  .works-next { right: -6px; }
}

/* Paginación ← / → */
.reviews-pagination {
  display: flex; justify-content: center; align-items: center; gap: 1rem;
  margin-top: 2rem; flex-wrap: wrap;
}
.reviews-pagination.is-hidden { display: none; }
.pag-btn {
  background: var(--brand-blue); color: #fff; border: 0; border-radius: 6px;
  padding: 0.65rem 1.2rem; font-weight: 700; font-size: 0.95rem; cursor: pointer;
  font-family: inherit; transition: background 0.15s ease;
}
.pag-btn:hover:not(:disabled) { background: var(--brand-blue-dark); }
.pag-btn:disabled { background: var(--line); color: var(--gray); cursor: not-allowed; }
.pag-info { font-weight: 700; color: var(--ink); min-width: 110px; text-align: center; }

/* ---------- FAQ ---------- */
.faq { margin-top: 1.5rem; display: grid; gap: 0.6rem; }
.faq details { border: 1px solid var(--line); border-radius: 12px; padding: 0 1.1rem; background: #fff; }
.faq summary {
  cursor: pointer; font-weight: 700; padding: 1rem 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand-blue); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin: 0 0 1rem; color: var(--gray); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 2.5rem 0; margin-top: 2rem; text-align: center; }
.footer-logo { height: 30px; margin-bottom: 0.6rem; }
.footer-inner p { margin: 0.2rem 0; color: var(--gray); }
.footer-areas { font-size: 0.85rem; max-width: 540px; margin: 0.4rem auto !important; }
.footer-phone a { font-weight: 700; color: var(--brand-blue); }
.footer-inner small { color: #9a9aa6; }

/* =========================================================== */
/* === Componentes nuevos al estilo TX (banda, promesas, etc.) === */
/* =========================================================== */

/* Banda negra con keyword después del hero (estilo TX) */
.title-banner {
  background: var(--ink); color: #fff;
  padding: 1.25rem 0; text-align: center;
  border-bottom: 4px solid var(--brand-yellow);
}
.title-banner strong {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 800; letter-spacing: 0.3px;
}

/* Cinta amarilla con 3 promesas */
.promises { background: var(--brand-yellow); color: var(--ink); padding: 1.25rem 0; }
.promises-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
  align-items: center; text-align: center;
}
.promise { font-weight: 800; font-size: clamp(0.95rem, 1.8vw, 1.1rem); color: var(--ink); }
.promise::before { content: "✓ "; color: var(--ink); margin-right: 0.2em; }
@media (max-width: 720px) {
  .promises-grid { grid-template-columns: 1fr; gap: 0.6rem; }
}

/* What's included: una tarjeta grande con foto + lista + precio */
.package {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; align-items: stretch;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; margin-top: 1.5rem;
}
.package-media { width: 100%; min-height: 320px; background: var(--ink); }
.package-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.package-body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.package-body h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin: 0 0 0.4rem; color: var(--ink); }
.package-body .tag { color: var(--gray); margin: 0 0 1.2rem; }
.package-includes { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: 0.45rem; }
.package-includes li { padding-left: 1.6rem; position: relative; color: var(--ink); font-weight: 500; }
.package-includes li::before {
  content: "✓"; position: absolute; left: 0; color: var(--brand-blue); font-weight: 800; font-size: 1.1rem;
}
.package-price {
  display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 1.2rem;
  font-weight: 800; font-size: 1.7rem; color: var(--ink);
}
.package-price small { font-size: 0.95rem; color: var(--gray); font-weight: 500; }
@media (max-width: 720px) {
  .package { grid-template-columns: 1fr; }
  .package-media { min-height: 220px; }
}

/* How it works como 3 cards con número grande */
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2rem;
}
.how-card {
  background: var(--ink); color: #fff; border: 0; border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.how-card .num {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 4.5rem; font-weight: 800; color: var(--brand-yellow); line-height: 1;
}
.how-card .ico { font-size: 2.4rem; margin-bottom: 0.4rem; display: block; }
.how-card h3 { font-size: 1.15rem; margin: 0.3rem 0 0.4rem; position: relative; z-index: 1; color: #fff; }
.how-card p { color: rgba(255, 255, 255, 0.78); margin: 0; position: relative; z-index: 1; }
@media (max-width: 720px) { .how-grid { grid-template-columns: 1fr; } }

/* Aggregate rating arriba en testimonios */
.rating-summary {
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  margin: 1.2rem 0 2rem;
}
.rating-summary .score {
  font-size: clamp(2.6rem, 6vw, 3.8rem); font-weight: 800; color: var(--ink); line-height: 1;
}
.rating-summary .stars-big { color: #f5a623; letter-spacing: 3px; font-size: 1.4rem; }
.rating-summary .meta { color: var(--gray); font-size: 0.95rem; }

/* Galería placeholder de eventos */
.gallery {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem; margin-top: 2rem;
}
.gallery figure {
  margin: 0; border-radius: var(--radius); overflow: hidden; position: relative;
  aspect-ratio: 4 / 3; background: linear-gradient(135deg, #1a1a2e, #050a35);
}
.gallery figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: #fff; padding: 0.7rem 1rem; font-size: 0.85rem; font-weight: 600;
}
.gallery .placeholder {
  width: 100%; height: 100%; display: grid; place-content: center; gap: 0.3rem;
  color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; text-align: center; padding: 1rem;
}

/* Service areas como bloque en body */
.areas-block {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 2rem; align-items: center;
  margin-top: 1.5rem;
}
.areas-block .intro { color: var(--body-text); font-size: 1.05rem; }
.areas-cities { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.areas-cities span {
  background: var(--brand-blue-soft); color: var(--brand-blue);
  padding: 0.4rem 0.9rem; border-radius: 999px; font-weight: 700; font-size: 0.9rem;
}
@media (max-width: 720px) { .areas-block { grid-template-columns: 1fr; } }

/* CTA de cierre con fondo oscuro */
.closing-cta {
  background: linear-gradient(135deg, #050a35 0%, #1436ee 70%, #050a35 100%);
  color: #fff; padding: clamp(3rem, 7vw, 5rem) 0; text-align: center;
}
.closing-cta h2 {
  color: #fff; font-size: clamp(2rem, 5vw, 3rem); margin: 0 0 1rem;
}
.closing-cta h2 .accent { background: var(--brand-yellow); color: var(--ink); }
.closing-cta h2::after { display: none; } /* sin underline amarillo aquí */
.closing-cta p { color: rgba(255, 255, 255, 0.85); margin: 0 0 2rem; font-size: 1.1rem; }
.closing-cta .actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

/* FAQ con barras estilo TX en color marca */
.faq details {
  border: 0; border-radius: 4px; padding: 0;
  background: var(--brand-blue); color: #fff; margin-bottom: 0.5rem;
  transition: background 0.15s ease;
}
.faq summary {
  cursor: pointer; font-weight: 700; padding: 1rem 1.4rem; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  color: #fff;
}
.faq summary::after { content: "+"; color: #fff; font-size: 1.4rem; line-height: 1; }
.faq details[open] { background: var(--brand-blue-dark); }
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin: 0; padding: 0 1.4rem 1.1rem; color: rgba(255, 255, 255, 0.92);
}

/* Footer multi-columna oscuro (override del Footer simple anterior) */
.site-footer {
  background: var(--ink); color: #fff;
  padding: 3rem 0 1.5rem; margin-top: 0; border-top: 0; text-align: left;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 2.5rem;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-col h4 {
  color: var(--brand-yellow); font-size: 0.95rem; margin: 0 0 0.9rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em;
}
.footer-col p, .footer-col a, .footer-col li {
  color: rgba(255, 255, 255, 0.78); font-size: 0.9rem; line-height: 1.55;
}
.footer-col a { color: rgba(255, 255, 255, 0.88); }
.footer-col a:hover { color: var(--brand-yellow); }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.4rem; }
.footer-col .footer-logo {
  height: 68px; width: auto; margin-bottom: 1rem; display: block;
  background: var(--brand-yellow); padding: 8px 14px; border-radius: 14px;
}
.footer-col .footer-phone a {
  font-weight: 800; color: var(--brand-yellow) !important; font-size: 1.1rem;
}
.footer-col .footer-areas {
  font-size: 0.85rem; max-width: none; margin: 0.4rem 0 !important;
  color: rgba(255, 255, 255, 0.65);
}
.footer-bottom { padding-top: 1.2rem; text-align: center; }
.footer-bottom small { color: rgba(255, 255, 255, 0.45); }
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; text-align: center; }
  .footer-col ul { justify-items: center; }
  .footer-col .footer-logo { margin-left: auto; margin-right: auto; }
}

/* Hero con foto BG + mini date picker */
.hero.hero-photo {
  background:
    linear-gradient(rgba(5, 10, 53, 0.78), rgba(5, 10, 53, 0.55)),
    url("https://i.ytimg.com/vi/qnCE1hq6i64/maxresdefault.jpg") center/cover no-repeat;
}
.hero-quick {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem;
  background: #fff; padding: 0.6rem; border-radius: 6px; max-width: 480px;
}
.hero-quick input[type="date"] {
  flex: 1 1 180px; margin: 0; padding: 0.7rem 0.9rem; border-radius: 4px;
}
.hero-quick .btn { flex: 1 1 auto; padding: 0.75rem 1.2rem; }

/* ---------- Responsive ---------- */
@media (max-width: 560px) {
  .grid-2 { grid-template-columns: 1fr; }
  .nav a:not(.btn):not(.nav-phone) { display: none; }
  .nav-phone { border: 0; padding: 0; }
  .stepper-nav li { font-size: 0; gap: 0; }
  .stepper-nav li span { font-size: 0.85rem; }
}
