:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --primary: #0d6efd;
  --primary-dark: #0a58ca;
  --text: #172033;
  --muted: #5b6579;
  --border: #e7ebf3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}

.hero {
  min-height: 72vh;
  background: linear-gradient(120deg, rgba(6, 38, 78, 0.75), rgba(6, 38, 78, 0.35)),
    url('/Imagenes/10.webp') center/cover;
  color: #fff;
  padding: 1.5rem clamp(1rem, 4vw, 4rem) 3rem;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.topbar h1 {
  font-size: clamp(1rem, 2.3vw, 1.4rem);
  margin: 0;
}

.hero-content {
  margin-top: 5rem;
  max-width: 680px;
}

.hero-content h2 {
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  margin: 0.5rem 0 1rem;
}

.hero-content p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.tag {
  background: rgba(255, 255, 255, 0.18);
  display: inline-block;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.container {
  max-width: 1080px;
  margin: -2rem auto 3rem;
  padding: 0 1rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  cursor: zoom-in;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  margin-top: 1rem;
}

.card h3 {
  margin-top: 0;
}

.accordion {
  padding: 0;
  overflow: hidden;
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-weight: 700;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: '▾';
  color: var(--primary);
  transition: transform 0.2s ease;
}

.accordion[open] summary::after {
  transform: rotate(180deg);
}

.accordion-hint {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.accordion-content {
  padding: 0 1.25rem 1.25rem;
  margin-bottom: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}

.price-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem;
  background: #fbfcff;
}

.muted {
  color: var(--muted);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  border: 1px solid #ffd5d5;
  background: #fff1f1;
  color: #b02727;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.85rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
}

input {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.65rem 0.7rem;
  font-size: 0.95rem;
}

select {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.65rem 0.7rem;
  font-size: 0.95rem;
  background: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  background: var(--primary);
  color: white;
  padding: 0.65rem 1rem;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover {
  background: var(--primary-dark);
}

.btn-light {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-pay {
  gap: 0.45rem;
}

.btn-pay svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.quote {
  margin: 1rem 0;
  background: #f3f8ff;
  border: 1px solid #dce9ff;
  border-radius: 12px;
  padding: 0.75rem;
}

.inline-accordion {
  margin: 1rem 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fbfcff;
  overflow: hidden;
}

.inline-accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 0.9rem;
  font-weight: 600;
}

.inline-accordion summary::-webkit-details-marker {
  display: none;
}

.inline-accordion summary::after {
  content: '▾';
  float: right;
  color: var(--primary);
}

.inline-accordion[open] summary::after {
  transform: rotate(180deg);
}

.inline-accordion-content {
  padding: 0 0.9rem 0.9rem;
}

.guest-stepper {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.guest-stepper input {
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-radius: 0;
  text-align: center;
  font-weight: 600;
  -moz-appearance: textfield;
}

.guest-stepper input::-webkit-outer-spin-button,
.guest-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.guest-stepper-btn {
  border: none;
  background: #fbfcff;
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 700;
  min-height: 44px;
  cursor: pointer;
}

.guest-stepper-btn:active {
  background: var(--bg);
}

.payment-box {
  margin: 1rem 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem;
  background: #fbfcff;
  display: grid;
  gap: 0.8rem;
}

.payment-box h4 {
  margin: 0;
}

.checkbox-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.message {
  margin-top: 0.8rem;
  min-height: 1.2rem;
}

.message.ok {
  color: #147a2c;
}

.message.error {
  color: #a02222;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 15, 31, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1000;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1280px, 96vw);
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  border-radius: 999px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:hover {
  background: #1ebe57;
}
