:root {
  --azul: #1a3a6b;
  --azul-claro: #2356a8;
  --dorado: #f5a800;
  --blanco: #ffffff;
  --gris-claro: #f4f6f9;
  --gris-texto: #444;
  --borde: #dde2ea;
  --radio: 14px;
  --sombra: 0 2px 16px rgba(0, 0, 0, .08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--gris-texto);
  background: var(--blanco);
  line-height: 1.6;
}

img { max-width: 100%; }

a { color: inherit; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--azul);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 2rem;
  min-height: 72px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  min-width: 220px;
}

.nav-logo img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 8px;
}

.nav-logo span {
  color: var(--blanco);
  font-weight: 800;
  font-size: .95rem;
  line-height: 1.15;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .25rem .9rem;
  list-style: none;
}

.nav-links a {
  color: #dbe5f7;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 650;
  padding: .35rem .1rem;
}

.nav-links a:hover,
.nav-links a.is-active { color: var(--dorado); }

.hero,
.page-hero {
  background: linear-gradient(135deg, var(--azul) 55%, var(--azul-claro) 100%);
  color: var(--blanco);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero { padding: 5.5rem 2rem 4.75rem; }
.page-hero { padding: 4.25rem 2rem 3.75rem; }

.hero::before,
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-logo, none) center/contain no-repeat;
  opacity: .055;
}

.hero-content,
.page-hero-content { position: relative; max-width: 900px; margin: 0 auto; }

.logo-hero {
  width: 136px;
  border-radius: 18px;
  margin-bottom: 1.4rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .35);
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: .85rem;
}

.hero h1 span { color: var(--dorado); }

.hero p,
.page-hero p {
  font-size: 1.1rem;
  opacity: .88;
  max-width: 650px;
  margin: 0 auto 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-bottom: 2.25rem;
}

.badge {
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .28);
  color: var(--blanco);
  padding: .4rem 1rem;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 700;
}

.btn {
  display: inline-block;
  padding: .85rem 1.75rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 0, 0, .22); }
.btn-dorado { background: var(--dorado); color: var(--azul); }
.btn-outline { background: transparent; color: var(--blanco); border: 2px solid rgba(255, 255, 255, .55); margin-left: .75rem; }

section { padding: 4.5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.bg-gris { background: var(--gris-claro); }

.accent-line {
  width: 52px;
  height: 4px;
  background: var(--dorado);
  border-radius: 2px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--azul);
  margin-bottom: .45rem;
}

.section-sub { color: #707887; margin-bottom: 2.25rem; }

.cards,
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.card,
.info-card {
  background: var(--blanco);
  border-radius: var(--radio);
  box-shadow: var(--sombra);
  padding: 1.75rem;
  border-top: 4px solid var(--dorado);
}

.card { text-align: center; }
.card-icon { font-size: 3rem; display: block; margin-bottom: 1rem; }
.card h3,
.info-card h3 { color: var(--azul); font-size: 1.2rem; margin-bottom: .5rem; }
.card p,
.info-card p { color: #626b78; font-size: .95rem; }

.card-cats {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  justify-content: center;
  margin-top: 1rem;
}

.cat-tag,
.pending-tag {
  background: var(--gris-claro);
  color: var(--azul);
  font-size: .78rem;
  padding: .22rem .62rem;
  border-radius: 999px;
  font-weight: 750;
}

.pending-tag { display: inline-block; margin-top: .65rem; color: #7a5400; background: #fff1c7; }

.feature-box {
  background: var(--blanco);
  border-radius: var(--radio);
  box-shadow: var(--sombra);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(180px, .7fr) 1.3fr;
}

.feature-emoji {
  background: var(--azul);
  display: grid;
  place-items: center;
  min-height: 240px;
  font-size: 6rem;
}

.feature-content { padding: 2.25rem; }
.tag {
  background: var(--dorado);
  color: var(--azul);
  font-size: .76rem;
  font-weight: 850;
  padding: .25rem .75rem;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 1rem;
}

.check-list { list-style: none; padding: 0; }
.check-list li {
  padding: .55rem 0;
  border-bottom: 1px solid #e8ecf0;
  display: flex;
  gap: .55rem;
}
.check-list li::before { content: '✓'; color: var(--dorado); font-weight: 900; }

.contact-list { list-style: none; display: grid; gap: 1rem; }
.contact-list li {
  background: var(--blanco);
  border: 1px solid var(--borde);
  border-radius: var(--radio);
  padding: 1.2rem 1.35rem;
}
.contact-list strong { display: block; color: var(--azul); margin-bottom: .2rem; }

.social-row,
.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  color: #fff;
}
.social-btn.fb { background: #1877f2; }
.social-btn.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.tw { background: #000; }

.site-footer {
  background: var(--azul);
  color: #cdd8f0;
  padding: 3rem 2rem;
  text-align: center;
}

.logo-footer { height: 60px; border-radius: 10px; margin-bottom: 1rem; }
.site-footer h4 { color: var(--blanco); font-size: 1.1rem; margin-bottom: .5rem; }
.site-footer p { font-size: .88rem; opacity: .75; margin-bottom: 1rem; }
.footer-links { justify-content: center; margin-bottom: 1.5rem; }
.footer-links a { color: #cdd8f0; text-decoration: none; font-size: .88rem; }
.footer-links a:hover { color: var(--dorado); }
.footer-copy { font-size: .78rem; opacity: .55; margin-top: 1.5rem; }

@media (max-width: 820px) {
  .site-nav { align-items: flex-start; flex-direction: column; padding: .9rem 1rem; }
  .nav-links { justify-content: flex-start; gap: .15rem .75rem; }
  .nav-links a { font-size: .84rem; }
  .hero { padding: 4rem 1.25rem 3.5rem; }
  .page-hero { padding: 3.5rem 1.25rem 3rem; }
  section { padding: 3.25rem 1.25rem; }
  .feature-box { grid-template-columns: 1fr; }
  .feature-emoji { min-height: 150px; font-size: 4rem; }
  .btn-outline { margin: .8rem 0 0; }
  .schedule-list li { flex-direction: column; gap: .15rem; }
  .schedule-list span { text-align: left; }
  .price-list li { flex-direction: column; gap: .15rem; }
  .price-list span { text-align: left; }
  .schedule-table-wrap { overflow: visible; border: 0; box-shadow: none; background: transparent; }
  .schedule-table,
  .schedule-table tbody,
  .schedule-table tr,
  .schedule-table td { display: block; width: 100%; }
  .schedule-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .schedule-table tr { margin-bottom: 1rem; padding: .65rem 1rem; background: var(--blanco) !important; border: 1px solid var(--borde); border-top: 4px solid var(--dorado); border-radius: var(--radio); box-shadow: var(--sombra); }
  .schedule-table td { display: grid; grid-template-columns: 105px 1fr; gap: .75rem; padding: .45rem 0; border-bottom: 1px solid #e8ecf0; }
  .schedule-table td:last-child { border-bottom: 0; }
  .schedule-table td::before { content: attr(data-label); color: var(--azul); font-weight: 800; }
}


/* Horarios */
.schedule-box {
  margin-top: 1.5rem;
  padding: 1.25rem 1.4rem;
  background: var(--blanco);
  border: 1px solid var(--borde);
  border-left: 4px solid var(--dorado);
  border-radius: var(--radio);
  box-shadow: var(--sombra);
}
.schedule-box h3 { color: var(--azul); font-size: 1.05rem; margin-bottom: .7rem; }
.schedule-list { list-style: none; display: grid; gap: .55rem; }
.schedule-list li { display: flex; justify-content: space-between; gap: 1rem; padding-top: .55rem; border-top: 1px solid #e8ecf0; }
.schedule-list li:first-child { padding-top: 0; border-top: 0; }
.schedule-list strong { color: var(--azul); }
.schedule-list span { color: #626b78; text-align: right; }

.schedule-table-wrap {
  overflow-x: auto;
  background: var(--blanco);
  border: 1px solid var(--borde);
  border-radius: var(--radio);
  box-shadow: var(--sombra);
}
.schedule-table { width: 100%; border-collapse: collapse; }
.schedule-table th,
.schedule-table td { padding: 1rem 1.15rem; text-align: left; border-bottom: 1px solid #e8ecf0; }
.schedule-table th { background: var(--azul); color: var(--blanco); font-size: .9rem; }
.schedule-table tbody tr:last-child td { border-bottom: 0; }
.schedule-table tbody tr:nth-child(even) { background: var(--gris-claro); }
.schedule-table td:first-child { color: var(--azul); font-weight: 800; }
.schedule-table td strong { color: var(--azul); white-space: nowrap; }

.schedule-note {
  display: flex;
  gap: .5rem 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding: 1.1rem 1.25rem;
  background: #fff6d8;
  border-radius: var(--radio);
  color: #654900;
}
.schedule-note a { color: var(--azul); font-weight: 800; }


/* Precios */
.price-box { margin-top: 1rem; padding: 1.25rem 1.4rem; background: #fff6d8; border: 1px solid #f1d681; border-left: 4px solid var(--dorado); border-radius: var(--radio); }
.price-box h3 { color: var(--azul); font-size: 1.05rem; margin-bottom: .7rem; }
.price-list { list-style: none; display: grid; gap: .55rem; }
.price-list li { display: flex; justify-content: space-between; gap: 1rem; padding-top: .55rem; border-top: 1px solid #efdca1; }
.price-list li:first-child { padding-top: 0; border-top: 0; }
.price-list strong { color: var(--azul); }
.price-list span { color: #654900; font-weight: 750; text-align: right; }
.price-table td:last-child strong { display: block; font-size: 1.05rem; color: var(--azul); }
.price-table td small { display: block; margin-top: .1rem; color: #626b78; line-height: 1.35; }
.payment-grid .info-card { border-top-color: var(--dorado); }
