/* ================================================================
   LABERINTO MACONDO — main.css
   CSS global del sitio. Todas las páginas usan este archivo.
   Estructura:
     1. Variables y reset
     2. Navbar / Announce bar
     3. Botones (reutilizables en cualquier página)
     4. Footer
     5. Tickets / compra (stepper, formulario de pago)
     6. HOME
     7. LABERINTO
     8. RESTAURANTE
     9. EVENTOS
    10. Responsive
================================================================ */


/* ─────────────────────────────────────────────────────────────
   1. VARIABLES GLOBALES Y RESET
───────────────────────────────────────────────────────────── */
:root {
  /* ANTES */
  --green-dark: #0A3737;    
  --green-dark2: #2A643A;   
  --green-lime: #CBDD5A;    
  --green-lime2: #5da800; 
  --green-lime3: #6CBA00;  
  --green-mid: #0d4444;
  --cream: #f5f3ee;
  --cream2: #eceae3;
  --footer-bg: #f4f3ec;
  --footer-green: #2a643a;
  --text-dark: #1a1a1a;
  --text-mid: #444;
  --white: #ffffff;
  --radius-pill: 50px;
  --radius-card: 20px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-strong: 0 12px 48px rgba(0, 0, 0, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}


/* ─────────────────────────────────────────────────────────────
   2. ANNOUNCE BAR + NAVBAR
───────────────────────────────────────────────────────────── */
.announce-bar {
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding: 9px 20px;
  font-weight: 400;
}

.announce-bar a {
  color: var(--green-lime2);
  font-weight: 600;
}

.navbar {
  background: var(--green-dark2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 60px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.logo {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.logo span {
  display: block;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  opacity: 0.85;
  margin-bottom: 2px;
}

.logo strong {
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-lime2);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 500;
}

.lang-switch a {
  color: rgba(255, 255, 255, 0.5);
}

.lang-switch a.active {
  color: var(--white);
  font-weight: 700;
}


/* ─────────────────────────────────────────────────────────────
   3. BOTONES GLOBALES
───────────────────────────────────────────────────────────── */
/* Círculo flecha — se usa dentro de cualquier botón */
.arrow-circle {
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.arrow-circle-dark {
  background: var(--green-dark);
  color: #fff;
}

.arrow-circle-white {
  background: #fff;
  color: var(--green-dark);
}

/* Botón verde lima (principal) */
.btn-cta,
.btn-lime {
  background: var(--green-lime);
  color: var(--green-dark);
  font-weight: 400;
  font-size: 0.88rem;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}

.btn-cta:hover,
.btn-lime:hover {
  background: var(--green-lime2);
  transform: translateY(-1px);
}

/* Botón hero (igual que lime pero un poco más grande) */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-lime2);
  color: #fff;
  font-weight: 400;
  font-size: 0.92rem;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  transition: background 0.2s, transform 0.2s;
  font-family: 'Poppins', sans-serif;
}

.btn-hero:hover {
  background: var(--green-lime);
  transform: translateY(-2px);
}

/* Botón "Descubre más" — texto con flecha */
.btn-outline-lime {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-lime2);
  color: #fff;
  font-weight: 400;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: background 0.2s, transform 0.2s;
  font-family: 'Poppins', sans-serif;
}

.btn-outline-lime:hover {
  background: var(--green-lime);
  transform: translateY(-1px);
}

/* Botón blanco (para fondo oscuro) */
.btn-white {
  background: var(--white);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, transform 0.2s;
  font-family: 'Poppins', sans-serif;
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-1px);
}


/* ─────────────────────────────────────────────────────────────
   4. FOOTER
───────────────────────────────────────────────────────────── */
.footer {
  background: var(--footer-bg);
  color: var(--text-dark);
  padding: 60px 80px 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.footer-top {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 28px;
}

/* Logo del footer */
.footer-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  line-height: 1;
  color: var(--footer-green);
}
.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.footer-logo span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.footer-logo strong {
  font-size: 1.6rem;
  text-transform: uppercase;
}

/* Columnas */
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.83rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, gap 0.2s;
}

.footer-col ul li a:hover {
  color: var(--footer-green);
  gap: 12px;
}

/* Flecha de cada link */
.footer-col ul li a::before {
  content: '\f105';
  /* fa-angle-right */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--green-lime);
  flex-shrink: 0;
}

/* Datos de contacto con íconos */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--text-mid);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact-item i {
  color: var(--green-lime);
  font-size: 0.9rem;
  margin-top: 2px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

/* Pie del footer */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--green-dark);
}

.footer-bottom a {
  color: var(--green-dark);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--footer-green);
}

.footer-bottom .footer-copy em {
  color: var(--green-dark);
  font-style: normal;
  font-weight: 600;
}


/* ─────────────────────────────────────────────────────────────
   5. TICKETS / COMPRA (stepper y formulario de pago)
───────────────────────────────────────────────────────────── */
.page-main {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

.stepper {
  display: flex;
  justify-content: center;
  gap: 120px;
  margin-bottom: 50px;
  margin-top: 50px;
  position: relative;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.step-circle {
  width: 32px;
  height: 32px;
  background: #CDDB6E;
  color: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
}

.step.active .step-circle,
.step.done .step-circle {
  background-color: var(--green-dark2);
  color: white;
}

.step-label {
  font-size: 0.85rem;
  color: var(--green-dark);
  font-weight: 600;
  margin: 0;
}

.stepper::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(50% - 250px);
  right: calc(50% - 250px);
  height: 2px;
  background: var(--green-dark2);
  z-index: 1;
}

.ticket-page-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 40px;
  margin-top: 40px;
}


/* ─────────────────────────────────────────────────────────────
   6. HOME
───────────────────────────────────────────────────────────── */
/* ── HERO SLIDER ─────────────────────────────────────── */
.hero {
  position: relative;
  height: 540px;
  overflow: hidden;
  border-radius: 0 0 28px 28px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.72);
}

.hero-content {
  position: absolute;
  bottom: 60px;
  left: 80px;
  max-width: 520px;
  color: var(--white);
}

.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
  margin-bottom: 14px;
}

.hero-content p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 28px;
  font-weight: 300;
}

/* Puntitos indicadores */
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.hero-dot.active {
  background: var(--green-lime);
  transform: scale(1.3);
}


.section-labyrinth {
  background: #ffffff;
  width: 100%;
  padding: 90px 80px;
}

.section-inner {
  display: flex;
  align-items: center;
  gap: 70px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.lab-text {
  flex: 1;
}

.lab-text .tag {
  display: inline-block;
  border: 1.5px solid var(--green-lime);
  color: var(--green-lime);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
  letter-spacing: 0.05em;
}

.lab-text h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.18;
  margin-bottom: 18px;
  color: var(--text-dark);
}

.lab-text h2 em {
  color: var(--green-lime);
  font-style: normal;
}

.lab-text p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 420px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 34px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 500;
}

.feature-item .check {
  width: 20px;
  height: 20px;
  background: var(--green-lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.lab-image {
  flex: 1;
}

.lab-image img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 8px 24px rgba(0, 0, 0, 0.18);
  aspect-ratio: 4/3;
  object-fit: cover;
  background: #fff;
  padding: 12px;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Sección restaurante (home) */
.restaurant-wrap {
  background: var(--cream);
  padding: 60px 80px;
}

.section-restaurant {
  background: var(--green-dark);
  border-radius: 28px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  min-height: 300px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.rest-text {
  flex: 1;
  padding: 52px 56px;
  color: #fff;
}

.rest-text h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 14px;
}

.rest-text p {
  font-size: 0.88rem;
  opacity: 0.8;
  margin-bottom: 30px;
  max-width: 300px;
  line-height: 1.7;
}

.rest-image {
  flex: 1;
  min-width: 0;
}

.rest-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Sección eventos (home) */
.section-events {
  padding: 80px 80px 60px;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
}

.section-events h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 18px;
  color: var(--green-dark);
}

.section-events h2 em {
  color: var(--green-lime);
  font-style: normal;
  display: block;
}

.section-events>p {
  max-width: 520px;
  margin: 0 auto 44px;
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* Grid: imágenes portrait (más altas que anchas) */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.event-card {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 2/3;
  position: relative;
  cursor: pointer;
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover img {
  transform: scale(1.06);
}

.event-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25) 0%, transparent 50%);
}

/* Botón "Cotizar evento" — fondo verde sólido */
.btn-cotizar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-lime2);
  color: #fff;
  font-weight: 400;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--green-lime2);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  font-family: 'Poppins', sans-serif;
}

.btn-cotizar:hover {
  background: var(--green-lime);
  border-color: var(--green-lime);
  color: #fff;
  transform: translateY(-1px);
}

/* Reviews */
.section-reviews {
  background: var(--cream2);
  padding: 80px;
}

.reviews-inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
}
.reviews-left {
  flex: 0 0 400px;
}

.reviews-left h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--green-dark)
}

.reviews-left h2 em {
  color: var(--green-lime2);
  font-style: normal;
}

.reviews-left p {
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 30px;
}

.reviews-cards {
  flex: 1;
  display: flex;
  gap: 18px;
  overflow: hidden;
}

.review-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  flex: 0 0 280px;
}

.review-card .reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.reviewer-avatar {
  width: 38px;
  height: 38px;
  background: var(--green-lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.reviewer-info strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
}

.reviewer-info span {
  font-size: 0.72rem;
  color: var(--text-mid);
}

.review-stars {
  color: #f5a623;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.review-badge {
  display: inline-block;
  background: #e8f5e9;
  color: var(--green-mid);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 30px;
  margin-left: 8px;
}

.review-date {
  font-size: 0.72rem;
  color: var(--text-mid);
  margin-bottom: 4px;
}

.review-text {
  color: var(--text-mid);
  line-height: 1.65;
  font-size: 0.83rem;
}

/* Equipo */
.section-team {
  background: var(--green-dark);
  padding: 0;
}

.team-inner {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.team-image {
  flex: 1;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-text {
  flex: 1;
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  margin-bottom: 18px;
  color: #fff;
}

.team-text h2 em {
  color: var(--green-lime2);
  font-style: normal;
}

.team-text p {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.75;
}


/* ─────────────────────────────────────────────────────────────
   7. LABERINTO
───────────────────────────────────────────────────────────── */
.hero-360 {
  width: 100%;
  height: 500px;
  position: relative;
  background: #0a1a0d;
  overflow: hidden;
}

.hero-360 iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.hero-360-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.8);
}

.hero-360-label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.75rem;
  padding: 6px 16px;
  border-radius: 30px;
  backdrop-filter: blur(4px);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.hero-thumbnails {
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  gap: 8px;
  padding: 10px 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

.hero-thumbnails::-webkit-scrollbar {
  display: none;
}

.hero-thumbnails img {
  width: 90px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.7;
  flex-shrink: 0;
  transition: opacity 0.2s, transform 0.2s;
  border: 2px solid transparent;
}

.hero-thumbnails img:hover,
.hero-thumbnails img.active {
  opacity: 1;
  border-color: var(--green-lime);
  transform: scale(1.05);
}

.section-exp {
  text-align: center;
  padding: 70px 40px 50px;
  max-width: 820px;
  margin: 0 auto;
}

.section-exp h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-exp h1 em {
  color: var(--green-lime);
  font-style: normal;
}

.section-exp>p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 50px;
}

/* Barra de tickets full-width */
.ticket-bar {
  background: #F4F3EC;
  width: 100%;
  padding: 50px 40px 36px;
}

.prices-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 36px;
  flex-wrap: nowrap;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.price-card {
  background: transparent;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 18px;
}

.price-icon {
  width: 56px;
  height: 56px;
  background: #CDDB6E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.price-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.price-info {
  flex: 1;
}

.price-info .label {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0A3737;
  display: block;
  margin-bottom: 1px;
}

.price-info .sublabel {
  font-size: 0.72rem;
  color: #3A633E;
  display: block;
  margin-bottom: 6px;
}

.price-info .amount {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-lime3);
}

.price-info .amount.free {
  color: var(--green-lime3);
}

.horario-bar {
  display: inline-block;
  background: var(--green-dark);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  margin-bottom: 0;
}

/* Botón comprar entradas (laberinto) */
.btn-comprar-center {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #CDDB6E;
  color: #0A3737;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}

.btn-comprar-center:hover {
  background: #c2cc5e;
  transform: translateY(-1px);
}

.btn-comprar-center .arrow-circle {
  background: #0A3737;
  color: #fff;
}

.section-about {
  background: var(--cream2);
  padding: 80px;
  display: flex;
  align-items: flex-start;
  gap: 70px;
  max-width: 1280px;
  margin: 0 auto;
}

.about-text {
  flex: 1.1;
}

.about-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  line-height: 1.18;
  margin-bottom: 24px;
}

.about-text h2 em {
  color: var(--green-lime);
  font-style: normal;
}

.about-text p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-image {
  flex: 0.9;
}

.about-image img {
  width: 100%;
  border-radius: 22px;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.section-history {
  padding: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-history h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 70px;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--green-lime);
  transform: translateX(-50%);
}

.timeline-dot-top,
.timeline-dot-bottom {
  width: 12px;
  height: 12px;
  background: var(--green-lime);
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.timeline-dot-top {
  margin: 0 auto -6px;
}

.timeline-dot-bottom {
  margin: -6px auto 0;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-text {
  flex: 1;
  padding: 0 60px;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-text {
  text-align: left;
}

.timeline-text .year {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
  margin-bottom: 4px;
}

.timeline-text .event-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  font-style: normal;
  color: var(--green-lime);
  display: block;
  margin-bottom: 12px;
}

.timeline-text p {
  color: var(--text-mid);
  font-size: 0.87rem;
  line-height: 1.75;
}

.timeline-center-dot {
  width: 14px;
  height: 14px;
  background: var(--green-lime);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--cream);
}

.timeline-image {
  flex: 1;
  padding: 0 60px;
}

.timeline-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 18px;
}

.timeline-image .img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: #ddd;
  border-radius: 18px;
}


/* ─────────────────────────────────────────────────────────────
   8. RESTAURANTE
───────────────────────────────────────────────────────────── */
.rest-hero {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.rest-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.65);
}

.rest-hero-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  font-style: normal;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.section-menu-intro {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.menu-intro-text {
  flex: 1;
}

.menu-intro-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 22px;
}

.menu-intro-text h2 em {
  color: var(--green-lime);
  font-style: normal;
}

.menu-intro-text p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.85;
  margin-bottom: 14px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green-lime);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  margin-top: 12px;
  transition: background 0.2s, transform 0.2s;
}

.btn-download:hover {
  background: var(--green-lime2);
  transform: translateY(-1px);
}

.btn-download .arrow-circle-white {
  width: 28px;
  height: 28px;
  background: #fff;
  color: var(--green-lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.menu-intro-image {
  flex: 0 0 400px;
}

.menu-intro-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-strong);
}

.section-carta {
  background: var(--cream2);
  padding: 60px 60px 80px;
}

.carta-grid-top,
.carta-grid-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 20px;
}

.carta-panel {
  border-radius: 20px;
  padding: 36px;
  font-size: 0.8rem;
}

.carta-panel.pink {
  background: #f5c6c6;
}

.carta-panel.mint {
  background: #c8e6c9;
}

.carta-panel.green {
  background: #a5d6a7;
}

.carta-panel.light {
  background: #e8f5e9;
}

.panel-header {
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.panel-header-text h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 8px;
}

.panel-header-text p {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: 260px;
}

.panel-header-icon {
  font-size: 2.5rem;
  opacity: 0.35;
  flex-shrink: 0;
}

.menu-section {
  margin-bottom: 28px;
}

.menu-section:last-child {
  margin-bottom: 0;
}

.menu-section-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.menu-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.menu-item-info {
  flex: 1;
}

.menu-item-name {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-dark);
  display: block;
  margin-bottom: 2px;
}

.menu-item-desc {
  font-size: 0.72rem;
  color: var(--text-mid);
  line-height: 1.4;
  display: block;
}

.menu-item-price {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--green-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item-prices {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.menu-item-prices span {
  font-size: 0.72rem;
  color: var(--text-mid);
}

.menu-item-prices strong {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-dark);
}


/* ─────────────────────────────────────────────────────────────
   9. EVENTOS
───────────────────────────────────────────────────────────── */
.ev-hero {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.ev-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.6);
}

.ev-hero-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
  text-align: center;
  padding: 0 40px;
}

.section-caract {
  background: #ffffff;
  padding: 70px 80px 60px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.section-caract h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  }

.section-caract h2 em {
  color: var(--green-lime3);
  font-style: normal;
}

.caract-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 40px;
}

.caract-card {
  background: var(--cream2); 
  border: none;                 
  border-radius: 18px;
  padding: 32px 22px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.caract-icon {
  width: 58px;
  height: 58px;
  background: var(--green-lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -50px auto 18px;
  overflow: hidden;
  flex-shrink: 0;
}

.caract-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.caract-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
  font-family: 'Poppins', sans-serif;
}

.section-gallery {
  background: var(--green-dark);
  padding: 40px 60px;
  display: flex;
  gap: 16px;
  align-items: stretch;
  min-height: 460px;
}

.gallery-main {
  flex: 1.4;
  border-radius: 16px;
  overflow: hidden;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-side-top {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
}

.gallery-side-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-side-bottom {
  flex: 1;
  display: flex;
  gap: 16px;
}

.gallery-side-bottom .img-wrapper {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
}

.gallery-side-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-why {
  display: flex;
  align-items: flex-start;
  gap: 70px;
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  padding: 80px;
  width: 100%;
  box-sizing: border-box;
}

.section-why-inner {
  display: flex;
  align-items: flex-start;
  gap: 70px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-text {
  flex: 1;
}

.why-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 22px;
  color: var(--green-dark);
}

.why-text h2 em {
  color: var(--green-lime3);
  font-style: normal;
}

.why-text p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

.why-image {
  flex: 0.85;
}

.why-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: var(--shadow-strong);
  border-radius: 22px;
  border: 15px solid #e0e0e0;
  box-shadow: none; 
}

.section-form {
  background: #fff;
  padding: 60px 80px 80px;
  text-align: center;
}

.btn-form-title {
  display: inline-block;
  background: var(--green-lime);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 40px;
  border-radius: var(--radius-pill);
  margin-bottom: 44px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto 16px;
}

.form-grid input,
.form-grid select {
  width: 100%;
  background: var(--cream2);  /* era var(--white) */
  box-shadow: none;
  border: none;
  border-radius: var(--radius-pill);
  padding: 16px 24px;
  font-size: 0.88rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text-mid);
  outline: none;
  appearance: none;
  transition: box-shadow 0.2s;
}

.form-grid input:focus,
.form-grid select:focus {
  box-shadow: 0 0 0 2px var(--green-lime);
}

.form-select-wrap { position: relative; }
.form-select-wrap select { width: 100%; padding-right: 48px; }
.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  background: var(--green-lime);
  border-radius: 50%;
  pointer-events: none;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto 32px;
  text-align: left;
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--green-lime);
  width: 15px;
  height: 15px;
}

.btn-submit {
  background: var(--green-lime);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 36px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background 0.2s, transform 0.2s;
}

.btn-submit:hover {
  background: var(--green-lime2);
  transform: translateY(-1px);
}


/* ─────────────────────────────────────────────────────────────
   10. RESPONSIVE
───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .navbar {
    padding: 14px 24px;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    left: 28px;
    bottom: 36px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .section-labyrinth,
  .section-reviews,
  .section-team,
  .section-about,
  .section-why,
  .section-menu-intro {
    flex-direction: column;
    padding: 50px 24px;
  }

  .section-restaurant {
    flex-direction: column;
  }

  .rest-image,
  .menu-intro-image {
    max-width: 100%;
    flex: none;
    width: 100%;
  }

  .rest-image img {
    height: 220px;
  }

  .section-events,
  .section-caract,
  .section-form {
    padding: 50px 24px;
  }

  .events-grid,
  .caract-grid {
    grid-template-columns: 1fr;
  }

  .section-gallery {
    flex-direction: column;
    padding: 24px;
    min-height: auto;
  }

  .gallery-side {
    flex-direction: row;
    height: 120px;
  }

  .gallery-side img {
    height: 120px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-history,
  .section-carta {
    padding: 50px 24px;
  }

  .carta-grid-top,
  .carta-grid-bottom {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 48px;
  }

  .timeline-center-dot {
    position: absolute;
    left: 14px;
  }

  .timeline-text,
  .timeline-item:nth-child(even) .timeline-text {
    text-align: left;
    padding: 0;
  }

  .timeline-image {
    padding: 16px 0 0;
    width: 100%;
  }

  .footer {
    padding: 40px 24px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}


/* ─────────────────────────────────────────────────────────────
   11. CONTACTO
───────────────────────────────────────────────────────────── */
.contact-hero {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.contact-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.55);
}

.contact-hero-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  font-style: normal;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.section-contact {
  display: flex;
  gap: 0;
  min-height: 600px;
  max-width: 100%;
  padding: 60px 80px;              /* ← padding superior e inferior */
  background: #fff;
  box-sizing: border-box;
}

/* Formulario lado izquierdo — más ancho */
.contact-form-side {
  flex: 0 0 520px;                 /* ← era 440px, ahora más ancho */
  padding: 0 60px 0 0;
  background: #fff;
}

.contact-form-side h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 36px;
}

.contact-field {
  margin-bottom: 14px;
}

.contact-field input,
.contact-field select {
  width: 100%;
  background: var(--cream2);
  border: none;
  border-radius: var(--radius-pill);
  padding: 17px 26px;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text-mid);
  outline: none;
  appearance: none;
  transition: box-shadow 0.2s;
}

.contact-field input:focus,
.contact-field select:focus {
  box-shadow: 0 0 0 2px var(--green-lime);
}

.contact-field input::placeholder {
  color: #aaa;
}

/* Select con flecha personalizada */
.contact-select-wrap {
  position: relative;
}

.contact-select-wrap::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--green-lime);
  border-radius: 50%;
  pointer-events: none;
}

.contact-select-wrap::before {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 0.8rem;
  z-index: 1;
  pointer-events: none;
}

/* Botón enviar — verde oscuro base, hover más oscuro */
.btn-contact-submit {
  margin-top: 10px;
  background: var(--green-lime2);   /* ← era green-lime, ahora green-dark */
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, transform 0.2s;
}

.btn-contact-submit:hover {
  background: var(--green-lime);  /* ← era green-lime2, ahora green-dark2 */
  transform: translateY(-1px);
}

/* Mapa lado derecho */
.contact-map-side {
  flex: 1;
  position: relative;
  min-height: 500px;
  border-radius: 16px;
  overflow: hidden;
}

.contact-map-side iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* Botón "Cómo llegar" flotante sobre el mapa */
.btn-como-llegar {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-dark);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: background 0.2s;
  z-index: 10;
}

.btn-como-llegar:hover {
  background: var(--green-dark2);
}

@media (max-width: 900px) {
  .section-contact {
    flex-direction: column;
    padding: 50px 24px 70px;
    gap: 40px;
  }

  .contact-form-side {
    flex: none;
    width: 100%;
    padding: 0;
  }

  .contact-map-side {
    min-height: 380px;
  }

  .contact-hero-title {
    font-size: 2.2rem;
  }
}

/* ================================================================
   TICKETS DASHBOARD & STEPS STYLES (Appended)
================================================================ */

:root {
  --primary-green: #2A643A;
  --light-green: #CBDC5B;
}

/* Stepper enhancements */
.step-circle.done {
  background-color: var(--primary-green);
  color: white;
}

.step-circle.active {
  background-color: var(--primary-green);
  color: white;
}

/* Titles */
.ticket-page-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #000;
  text-align: center;
}

.ticket-page-title.mb-10 {
  margin-bottom: 10px;
}

.ticket-page-title.mb-30 {
  margin-bottom: 30px;
}

/* Selection Cards (paso1) */
.ticket-options-wrapper {
  display: flex;
  flex-direction: row;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 40px;
}

.ticket-option-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  text-decoration: none;
  overflow: visible;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  flex: 1;                         /* ← mismo ancho ambas */
  min-height: 280px;
}

.ticket-option-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.ticket-option-img {
  width: 180px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
  min-height: 280px;
}

.ticket-option-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Círculo centrado verticalmente en el borde imagen/texto */
.ticket-option-icon {
  background-color: #CBDC5B;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: absolute;
  left: calc(180px - 26px);      /* ← borde derecho de la imagen */
  top: 50%;
  transform: translateY(-50%);   /* ← centrado vertical exacto */
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.ticket-option-body {
  flex-grow: 1;
  padding: 28px 24px 28px 44px;  /* ← 44px izq para no chocar con el ícono */
}

.ticket-option-title {
  margin: 0 0 4px;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-dark);
}

.ticket-option-subtitle {
  margin: 0 0 12px;
  color: #3A633E;
  font-weight: 600;
  font-size: 0.9rem;
}

.ticket-option-desc {
  font-size: 0.92rem;
  color: var(--green-dark);
  line-height: 1.55;
  margin: 0;
}

.ticket-option-highlight {
  color: #3A633E;
  font-weight: 500;
}
/* FAQ Container (paso1) */
.faq-container {
  max-width: 800px;
  margin: 0 auto 50px auto;
  text-align: left;
}

.faq-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--primary-green);
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  color: #1D1D1D;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  background-color: #f9f9f9;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary-green);
  font-weight: bold;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-content {
  padding: 0 20px 20px 20px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  border-top: 1px solid #eee;
}

/* Help Float */
.help-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 1000;
}

.help-float.alt {
  bottom: 30px;
  right: 30px;
  gap: 10px;
}

.btn-help-text {
  background-color: white;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-help-text:hover {
  background-color: #f9f9f9;
  transform: scale(1.02);
}

.btn-help {
  background: white;
  border: 1px solid #ccc;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  color: var(--primary-green);
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

.icon-box-bird {
  background-color: #CBDC5B;
  width: 60px;
  height: 55px;
  border-radius: 15px;
  border: 2px solid var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary-green);
  box-shadow: 2px 2px 0px var(--primary-green);
}

.icon-box {
  background: var(--light-green);
  width: 50px;
  height: 50px;
  border-radius: 10px 10px 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bono (paso2_bono) */
.bono-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.gift-preview {
  background: linear-gradient(135deg, var(--primary-green), #234d30);
  width: 350px;
  height: 500px;
  border-radius: 20px;
  padding: 30px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 40px rgba(42, 100, 58, 0.4);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.gift-deco {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.gift-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.gift-subtitle {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: auto;
}

.gift-data label {
  display: block;
  font-size: 0.7rem;
  opacity: 0.8;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.gift-data p {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 5px;
}

.gift-msg {
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  border: none !important;
}

.gift-validity {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
}

.form-section {
  width: 400px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: left;
}

.input-group {
  margin-bottom: 20px;
  text-align: left;
}

.input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  font-size: 0.9rem;
}

.bono-input {
  width: 100%;
  background: #F2F2F2;
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

.bono-input:focus {
  outline: 2px solid var(--light-green);
  background: white;
}

textarea.bono-input {
  resize: none;
  height: 100px;
}

.qty-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F9F9F9;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #eee;
}

.qty-total {
  font-weight: bold;
  color: var(--primary-green);
}

.qty-controls {
  display: flex;
  align-items: center;
}

.qty-controls button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
}

.qty-input {
  width: 30px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: bold;
}

/* Date & Tickets (paso2_fecha) */
.booking-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.calendar-card {
  width: 340px;
}

.calendar-help {
  font-size: 0.8rem;
  margin-top: 15px;
  color: var(--green-dark2);
  text-align: left;
  padding-left: 10px;
}

.ticket-selector {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.price-pill {
  background-color: var(--green-dark2);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 230px;
  font-weight: 600;
}

.price-pill.ninos {
  background-color: var(--green-dark2);
}

.price-pill span:last-child {
  font-weight: 500;
  font-size: 1.15rem;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--green-dark);
  background: white;
  color: #555;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.qty-btn:hover {
  border: 2px solid var(--green-dark);
  color: var(--green-dark);
}

.qty-display {
  background-color: #CDDB6E;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--green-dark);
  font-size: 1.2rem;
}

.ticket-help {
  font-size: 0.75rem;
  color: var(--green-dark2);
  margin-bottom: 25px;
  text-align: center;
  max-width: 230px;
  line-height: 1.4;

}

/* ── FLATPICKR CALENDAR OVERRIDES ─────────────────────── */
.flatpickr-calendar {
  box-shadow: 0 10px 40px rgba(0,0,0,0.08) !important;
  border-radius: 20px !important;
  font-family: 'Poppins', sans-serif !important;
  padding: 28px !important;
  border: none !important;
  width: 380px !important;
  background: #fff !important;
}

/* Header: mes y año a la izquierda */
.flatpickr-months {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding-bottom: 0 !important;
  position: relative !important;
}

.flatpickr-month {
  display: flex !important;
  align-items: center !important;
  flex: 1 !important;
  height: auto !important;
  padding: 0 !important;
}

.flatpickr-current-month {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--green-dark) !important;
  padding: 0 !important;
  position: static !important;
  width: auto !important;
  left: auto !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--green-dark) !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  cursor: default !important;
  pointer-events: none !important;    /* ← solo lectura, sin dropdown */
}

.flatpickr-current-month input.cur-year {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--green-dark) !important;
  padding: 0 !important;
}

/* Línea verde bajo el título */
.flatpickr-months::after {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  bottom: -10px !important;
  left: 0 !important;
  width: 100px !important;
  height: 6px !important;
  background: #3A633E !important;
  border-radius: 3px !important;
}

/* Flechas prev/next a la derecha */
.flatpickr-prev-month,
.flatpickr-next-month {
  position: static !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--green-dark) !important;
  padding: 0 4px !important;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
  fill: var(--green-dark) !important;
  width: 14px !important;
  height: 14px !important;
}

/* Separación entre header y días */
.flatpickr-innerContainer {
  margin-top: 22px !important;
}

/* Días de la semana en mayúscula */
.flatpickr-weekdays {
  margin-bottom: 6px !important;
}

span.flatpickr-weekday {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.72rem !important;
  color: var(--green-dark) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
}

/* Números del calendario más grandes */
.flatpickr-day {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 300 !important;
  color: #1a1a1a !important;
  border-radius: 50% !important;
  border: none !important;
  height: 42px !important;
  line-height: 42px !important;
  max-width: 42px !important;
}

.flatpickr-day:hover {
  background: #f0f0f0 !important;
  color: var(--green-dark) !important;
}

/* Día de hoy */
.flatpickr-day.today {
  background: var(--green-lime) !important;
  border-color: transparent !important;
  color: var(--green-dark) !important;
  font-weight: 300 !important;
}

/* Día seleccionado = mismo estilo que today (lima) */
.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected:focus {
  background: var(--green-lime) !important;
  color: var(--green-dark) !important;
  font-weight: 300 !important;
  border: none !important;
}

/* Día de hoy SIN seleccionar = solo borde sutil, sin relleno */
.flatpickr-day.today:not(.selected) {
  background: transparent !important;
  border: 1px solid var(--green-lime) !important;
  color: var(--green-dark) !important;
  font-weight: 300 !important;
}

/* Día de hoy seleccionado = relleno lima como cualquier otro */
.flatpickr-day.today.selected {
  background: var(--green-lime) !important;
  border: none !important;
}
/* Días de otros meses (gris claro) */
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: #ccc !important;
}

/* Días deshabilitados */
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: #ddd !important;
  background: transparent !important;
  cursor: not-allowed !important;
}

/* Tooltip martes */
.tuesday-disabled {
  position: relative;
  cursor: not-allowed !important;
}

.tuesday-disabled::after {
  content: attr(data-tooltip);
  position: fixed;              /* ← fixed en lugar de absolute, sale del overflow */
  background: var(--green-dark2);
  color: #fff;
  font-size: 0.75rem;
  font-family: 'Poppins', sans-serif;
  white-space: normal;          /* ← permite salto de línea */
  width: 180px;                 /* ← ancho fijo para que no sea tan largo */
  text-align: center;
  padding: 8px 12px;
  border-radius: 10px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 9999;
  /* Posición la maneja el JS */
  top: var(--tt-top, auto);
  left: var(--tt-left, auto);
  transform: translateX(-50%);
}

.tuesday-disabled:hover::after {
  opacity: 1;
}
/* Navigation Buttons (Common) */
.nav-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  margin-bottom: 60px;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: transparent;
  color: #555;
  border: 1.5px solid #ccc;
  padding: 12px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  min-width: 160px;
  font-family: 'Poppins', sans-serif;
}

.btn-back:hover {
  transform: translateY(-2px);
  background-color: #f2f2f2;
}

.btn-continue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--green-dark2);
  color: white;
  padding: 12px 60px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
  min-width: 250px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}

.btn-continue:hover {
  transform: translateY(-2px);
  background-color: var(--green-mid);
}

/* Datos (paso3_datos) */
.form-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 30px;
}

.checkout-input {
  width: 100%;
  background-color: #F2F2F2;
  border: none;
  border-radius: 50px;
  padding: 18px 25px;
  font-size: 1rem;
  color: #333;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.checkout-input::placeholder {
  color: #999;
}

.checkout-input:focus {
  background-color: #e6e6e6;
  box-shadow: 0 0 0 2px var(--light-green);
}

.custom-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23999%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 20px top 50%;
  background-size: 12px auto;
}

.terms-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #333;
  margin-top: 20px;
  text-align: left;
}

.terms-container input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--primary-green);
  flex-shrink: 0;
}

.terms-link {
  color: var(--primary-green);
  font-weight: bold;
  text-decoration: none;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* Resumen (paso4_resumen) */
.order-wrapper {
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 40px;
}

/* Cabecera de tabla */
.order-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 0 0 12px;
  border-bottom: 2px solid #ddd;
  font-size: 0.75rem;
  font-weight: 400;
  color: #999;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Fila de ítem */
.order-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid #eee;
}

/* Columna artículo */
.order-item-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.order-item-img {
  width: 90px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.order-item-info strong {
  font-size: 1rem;
  font-weight: 400;
  color: #3A633E;
  display: block;
  margin-bottom: 4px;
}

.order-item-info p {
  font-size: 0.82rem;
  color: #777;
  margin: 0;
  line-height: 1.4;
}

/* Columna precio */
.order-item-price span {
  font-weight: 400;
  color: #3A633E;
  display: block;
}

.order-item-price small {
  font-size: 0.78rem;
  color: #777;
  display: block;
  margin-top: 4px;
}

/* Cantidad */
.qty-pill {
  display: inline-block;
  background: var(--green-lime);
  color: var(--green-dark);
  font-weight: 300;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
}

/* Total por ítem */
.order-item-total {
  font-weight: 450;
  color: #3A633E;
  font-size: 1rem;
}

/* Footer: delivery + totales */
.order-footer {
  display: flex;
  justify-content: flex-end;
  gap: 60px;
  margin-top: 32px;
  align-items: flex-start;
}

.order-delivery {
  min-width: 280px;
}

.order-delivery-title {
  font-size: 0.88rem;
  color: #3A633E;
  margin-bottom: 12px;
  width: 400;
}

.delivery-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #3A633E;
  margin-bottom: 10px;
  cursor: pointer;
}

/* Totales */
.order-totals {
  min-width: 280px;
}

.order-totals-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #555;
  padding: 6px 0;
}

.order-totals-row.discount {
  color: var(--green-dark2);
  font-weight: 300;
}

.order-totals-total {
  display: flex;
  justify-content: space-between;
  background: var(--green-lime);
  color: var(--green-dark);
  font-weight: 400;
  font-size: 1rem;
  padding: 14px 18px;
  border-radius: 12px;
  margin: 16px 0;
}

.btn-continue.full-width {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Status pages (Exito/Fallo) */
.status-page-wrapper {
  text-align: center;
  padding: 50px 20px;
}

.status-page-title-success {
  color: var(--primary-green);
  font-size: 3rem;
  margin-bottom: 20px;
  margin-top: 0;
}

.status-page-title-error {
  color: #d9534f;
  font-size: 3rem;
  margin-bottom: 20px;
  margin-top: 0;
}

.status-page-text {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-dark {
  background-color: #333;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}
/* Flecha imagen en botones */
.btn-arrow {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}