/* ===== main.css ===== */
/* ============================================================
   EasyTour — main.css
   Orden: variables · reset · base · nav · hero · sections ·
          reservas · contacto · footer · responsive
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --verde:       #1a7a4a;
  --verde-dark:  #125c37;
  --verde-hero:  #0d1f15;
  --amarillo:    #F5C800;
  --naranja:     #e07b20;
  --negro:       #111;
  --gris-claro:  #f7f7f5;
  --gris-medio:  #666;
  --blanco:      #fff;
  --radius:      12px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.10);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Base ──────────────────────────────────────────────────── */
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--blanco);
  color: var(--negro);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── Nav ───────────────────────────────────────────────────── */
nav {
  background: var(--verde-hero);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 65px; width: auto; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 1.5rem; }
.nav-links li a.nav-link {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 700;
  transition: color .2s;
}
.nav-links li a.nav-link:hover,
.nav-links li a.nav-link.active { color: var(--amarillo); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 201;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--blanco);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--verde-hero);
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: .2rem;
  z-index: 199;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover,
.nav-mobile a.active { color: var(--amarillo); }

/* ── Breadcrumbs ───────────────────────────────────────────── */
.breadcrumbs {
  background: var(--gris-claro);
  padding: .75rem 2rem;
  font-size: .8rem;
}
.breadcrumbs a { color: var(--verde); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span { color: var(--gris-medio); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--naranja);
  color: var(--blanco);
  text-align: center;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.btn-primary:hover { background: #c46a18; }
.btn-secondary {
  display: inline-block;
  background: var(--verde);
  color: var(--blanco);
  text-align: center;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: .9rem;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.btn-secondary:hover { background: var(--verde-dark); }
.btn-ghost {
  background: transparent;
  border: 2px solid var(--verde);
  color: var(--verde);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 800;
  font-size: .95rem;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-ghost:hover { background: var(--verde); color: var(--blanco); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  background: var(--verde-hero);
  background-image: linear-gradient(135deg, #0d1f15 0%, #1a4a2a 100%);
  display: flex;
  flex-direction: column;
  min-height: 540px;
}
.hero-badge-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--naranja);
  color: var(--blanco);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 32px;
  border-radius: 8px;
  margin: 2rem auto 1.4rem;
  width: fit-content;
  text-decoration: none;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
}
.hero-badge-btn:hover { background: #c46a18; transform: translateY(-2px); }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  padding: 0 2rem 3rem;
  align-items: start;
  flex: 1;
}
.hero-left { color: var(--blanco); text-align: center; }
.hero-left h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: .8rem;
}
.hero-left h1 .amarillo { color: var(--amarillo); }
.hero-cta-text {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin: 0 auto 1.2rem;
  line-height: 1.4;
  max-width: 90%;
  border-left: 3px solid var(--amarillo);
  padding-left: .8rem;
  text-align: left;
}
.hero-left p {
  font-size: 1rem;
  color: rgba(255,255,255,0.80);
  margin-bottom: 1.8rem;
  line-height: 1.6;
}
.hero-left p strong { color: var(--blanco); }
.precio-box {
  width: 100%;
  border: 2px solid var(--amarillo);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  background: rgba(0,0,0,0.30);
}
.precio-box .monto {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--amarillo);
  letter-spacing: 2px;
  line-height: 1;
}
.precio-box .monto-sub {
  font-size: .86rem;
  color: rgba(255,255,255,0.72);
  font-weight: 600;
  margin-top: 2px;
}
.precio-box .regreso {
  color: #5ddb99;
  font-weight: 800;
  font-size: .84rem;
  margin-top: 4px;
}
.btn-reservar-precio {
  display: block;
  background: var(--naranja);
  color: var(--blanco);
  text-align: center;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  margin-top: 1rem;
  width: 100%;
  transition: background .2s;
}
.btn-reservar-precio:hover { background: #c46a18; }

/* ── Detalles card ─────────────────────────────────────────── */
.detalles-card {
  background: rgba(10,40,22,0.96);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.8rem;
  color: var(--blanco);
}
.detalles-card h3 {
  font-size: .9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--amarillo);
  margin-bottom: 1.2rem;
  text-align: center;
}
.detalle-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.detalle-item:last-child { border-bottom: none; padding-bottom: 0; }
.detalle-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.detalle-texto .etiq {
  font-size: .9rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}
.detalle-texto .val { font-size: 1.1rem; font-weight: 800; margin-top: 2px; }
.detalle-texto .val.am { color: var(--amarillo); }
.detalle-texto .val.vd { color: #5ddb99; }
.detalle-texto .map-link {
  font-size: .85rem;
  color: #5ddb99;
  font-weight: 800;
  text-decoration: underline;
  margin-top: 6px;
  display: inline-block;
}

/* ── Editorial section ─────────────────────────────────────── */
.editorial-section {
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 0 2rem;
}
.editorial-section h2,
.conciertos-section h2 {
  font-size: 1.6rem;
  color: var(--verde);
  font-weight: 800;
  margin-bottom: 1rem;
}
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.2rem;
}
.editorial-card {
  background: var(--gris-claro);
  border-radius: var(--radius);
  padding: 1.2rem;
  border-left: 4px solid var(--verde);
}
.editorial-card h3 {
  font-size: .95rem;
  font-weight: 800;
  color: var(--verde);
  margin-bottom: .4rem;
}
.editorial-card p,
.editorial-intro {
  font-size: .88rem;
  color: var(--gris-medio);
  line-height: 1.5;
}
.editorial-intro {
  font-size: .98rem;
  line-height: 1.7;
  margin-bottom: .5rem;
}

/* ── Conciertos section ────────────────────────────────────── */
.conciertos-section {
  max-width: 900px;
  margin: 2.5rem auto 0;
  padding: 0 2rem;
}
/* ── Reviews section ───────────────────────────────────────── */
.reviews-section {
  padding: 0 2rem;
  margin: 3rem auto;
  max-width: 1100px;
}
.reviews-section h2 { font-size: 1.5rem; font-weight: 900; color: var(--verde); margin-bottom: .4rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.review-card {
  background: var(--blanco);
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.review-stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; }
.review-text { font-size: .88rem; color: var(--gris-medio); line-height: 1.55; flex: 1; font-style: italic; }
.review-author { font-size: .8rem; font-weight: 800; color: var(--negro); }
.review-date { font-weight: 400; color: var(--gris-medio); }

/* ── Conciertos lista ───────────────────────────────────────── */
.conciertos-lista { display: flex; flex-direction: column; gap: .6rem; }
.concierto-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gris-claro);
  border-radius: var(--radius);
  padding: .9rem 1.2rem;
  border: 1px solid #e0e0e0;
  gap: 1rem;
}
.concierto-fecha {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--verde);
  min-width: 90px;
}
.concierto-artista { font-weight: 800; font-size: 1rem; color: var(--negro); flex: 1; }
.concierto-artista a { color: var(--verde); text-decoration: none; }
.concierto-artista a:hover { text-decoration: underline; }
.concierto-tag {
  font-size: .72rem;
  font-weight: 700;
  background: var(--verde);
  color: var(--blanco);
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.concierto-tag.agotado { background: #999; }
.conciertos-nota { font-size: .8rem; color: var(--gris-medio); margin-top: .6rem; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-section {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 2rem;
  content-visibility: auto;
  contain-intrinsic-size: 0 800px;
}
.faq-container {
  border: 2px solid var(--negro);
  border-radius: var(--radius);
  background: var(--blanco);
  padding: 1.5rem;
}
.faq-container h2 {
  font-size: 1.8rem;
  color: var(--verde);
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 800;
}
.faq-item {
  background: var(--gris-claro);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}
.faq-question {
  background: var(--blanco);
  padding: 1rem 1.5rem;
  font-weight: 800;
  font-size: 1rem;
  color: var(--verde);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  user-select: none;
}
.faq-question:hover { background: #f9f9f9; }
.faq-question .icon {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--naranja);
  transition: transform .2s;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  background: var(--blanco);
  line-height: 1.6;
  color: var(--gris-medio);
  font-size: .95rem;
}
.faq-item.open .faq-answer { padding: 1rem 1.5rem; max-height: 500px; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }

/* ── Reservas — page layout ────────────────────────────────── */
.main-container {
  max-width: 860px;
  width: 100%;
  margin: 2rem auto;
  padding: 0 1.5rem;
  flex: 1;
}

/* ── Steps bar ─────────────────────────────────────────────── */
.steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.step { display: flex; flex-direction: column; align-items: center; gap: .4rem; }
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ddd;
  color: var(--gris-medio);
  font-weight: 900;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, color .3s;
}
.step.active .step-num, .step.done .step-num { background: var(--verde); color: var(--blanco); }
.step-label { font-size: .75rem; font-weight: 700; color: var(--gris-medio); text-align: center; white-space: nowrap; }
.step.active .step-label { color: var(--verde); }
.step-line { width: 60px; height: 2px; background: #ddd; margin: 0 .5rem .4rem; transition: background .3s; }
.step-line.done { background: var(--verde); }
.step-panel { display: none; }
.step-panel.active { display: block; }

/* ── Section titles ────────────────────────────────────────── */
.section-title { font-size: 1.5rem; font-weight: 800; color: var(--verde); margin-bottom: .5rem; }
.section-sub { font-size: .9rem; color: var(--gris-medio); margin-bottom: 1.5rem; }

/* ── Events table ──────────────────────────────────────────── */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.events-table {
  width: 100%;
  min-width: 340px;
  border-collapse: collapse;
}
.events-table thead th {
  background: var(--verde-hero);
  color: var(--amarillo);
  padding: .8rem 1rem;
  text-align: left;
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.events-table tbody tr { border-bottom: 1px solid #e8e8e8; transition: background .15s; }
.events-table tbody tr:hover { background: #f0faf5; }
.events-table tbody tr:last-child { border-bottom: none; }
.events-table td { padding: .85rem 1rem; font-size: .9rem; vertical-align: middle; }
.events-table .fecha-cell {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--verde);
  white-space: nowrap;
}
.events-table .artista-cell { font-weight: 800; color: var(--negro); }
.row-selectable { cursor: pointer; }
.row-selectable:hover { background: #e8f5ee !important; }
.row-selectable:active { background: #d2eddf !important; }
.row-soldout td { opacity: .5; }
.tag-agotado { display: inline-block; background: #ddd; color: #666; font-size: .72rem; font-weight: 700; padding: 2px 7px; border-radius: 4px; margin-left: .4rem; vertical-align: middle; }
.concierto-link { color: var(--verde); text-decoration: none; font-weight: 800; }
.concierto-link:hover { text-decoration: underline; }
.disponible { color: var(--verde); font-weight: 700; }
.agotado    { color: #999; font-weight: 700; }
.btn-select {
  background: var(--naranja);
  color: var(--blanco);
  border: none;
  padding: 7px 16px;
  border-radius: 8px;
  font-weight: 800;
  font-size: .85rem;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
  font-family: inherit;
}
.btn-select:hover { background: #c46a18; }

/* ── Reservas form ─────────────────────────────────────────── */
.form-card {
  background: var(--blanco);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.form-card h2 { color: var(--verde); font-size: 1.4rem; font-weight: 800; margin-bottom: .4rem; }
.form-card > p { color: var(--gris-medio); font-size: .9rem; margin-bottom: 1.5rem; }
.selected-event-banner {
  background: var(--gris-claro);
  border-left: 4px solid var(--verde);
  border-radius: 8px;
  padding: .8rem 1rem;
  margin-bottom: 1.5rem;
  font-size: .9rem;
}
.selected-event-banner strong { color: var(--verde); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: .4rem;
  color: var(--negro);
  font-size: .88rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  font-size: .9rem;
  transition: border-color .2s;
  background: var(--blanco);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--verde); }
.required { color: var(--naranja); }
.hint { font-size: .78rem; color: var(--gris-medio); margin-top: .3rem; }
.campo-trampa { display: none !important; visibility: hidden; }
.radio-group { display: flex; gap: 1.5rem; margin-top: .4rem; flex-wrap: wrap; }
.radio-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
}
.radio-label input[type="radio"] { accent-color: var(--verde); width: 16px; height: 16px; }
.domicilio-fields { display: none; }
.domicilio-fields.visible { display: block; }
.step-actions { display: flex; gap: 1rem; margin-top: 1.5rem; }
.btn-next {
  background: var(--verde);
  color: var(--blanco);
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s;
  flex: 1;
  font-family: inherit;
}
.btn-next:hover { background: var(--verde-dark); }

/* ── Payment section ───────────────────────────────────────── */
.success-banner {
  background: #d4edda;
  color: #155724;
  border: 2px solid #28a745;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.payment-card {
  background: var(--gris-claro);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 1rem;
}
.payment-card h3 { font-size: 1.1rem; color: var(--verde); font-weight: 800; margin-bottom: 1rem; }
.bank-info {
  background: var(--blanco);
  border: 2px solid var(--verde);
  border-radius: 10px;
  padding: 1.4rem 2rem;
  margin-top: .8rem;
  margin-bottom: 1rem;
  width: 100%;
  box-sizing: border-box;
}
.bank-row {
  padding: .45rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 1rem;
}
.bank-row:last-child { border-bottom: none; }
.bank-row .val { font-weight: 800; color: var(--negro); }
.btn-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  width: 100%;
  background: var(--naranja);
  color: var(--blanco);
  border: none;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 800;
  font-size: .95rem;
  cursor: pointer;
  transition: background .2s;
  font-family: inherit;
  text-align: center;
}
.btn-copy:hover { background: #c46a18; }
.btn-volver-inicio {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--verde);
  color: var(--blanco);
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 900;
  font-size: 1rem;
  margin-top: 1.5rem;
  transition: background .2s;
}
.btn-volver-inicio:hover { background: var(--verde-dark); }
.payment-steps { list-style: none; counter-reset: step-counter; margin: 1rem 0; }
.payment-steps li {
  counter-increment: step-counter;
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: .6rem 0;
  font-size: .9rem;
  border-bottom: 1px solid #e8e8e8;
}
.payment-steps li:last-child { border-bottom: none; }
.payment-steps li::before {
  content: counter(step-counter);
  background: var(--verde);
  color: var(--blanco);
  font-weight: 900;
  font-size: .75rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.wsp-btn-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: #25D366;
  color: var(--blanco);
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 900;
  font-size: 1rem;
  margin-top: 1rem;
  transition: background .2s;
}
.wsp-btn-large:hover { background: #1da851; }

/* ── Contact page ──────────────────────────────────────────── */
.contact-main {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
  flex: 1;
}
.page-header { text-align: center; padding: 2rem 1rem 1.5rem; }
.page-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--verde);
  letter-spacing: 1px;
  margin-bottom: .4rem;
}
.page-header p { color: var(--gris-medio); font-size: .95rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.contact-form-card {
  background: var(--blanco);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.contact-form-card h2,
.info-card h2 { color: var(--verde); font-size: 1.4rem; font-weight: 800; margin-bottom: .4rem; }
.contact-form-card > p { color: var(--gris-medio); font-size: .9rem; margin-bottom: 1.5rem; }
.btn-submit {
  background: var(--naranja);
  color: var(--blanco);
  border: none;
  padding: 14px;
  font-weight: 800;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
  transition: background .2s;
  font-family: inherit;
}
.btn-submit:hover { background: #c46a18; }
.mensaje-exito {
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 700;
  border: 2px solid #28a745;
  display: none;
}
.mensaje-exito.visible { display: block; }
.form-note { margin-top: .8rem; font-size: .82rem; color: var(--gris-medio); }
.form-note a { color: var(--verde); text-decoration: none; }
.form-note a:hover { text-decoration: underline; }
.info-card {
  background: var(--gris-claro);
  border-radius: var(--radius);
  padding: 2rem;
}
.info-card h2 { margin-bottom: 1.5rem; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
}
.info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.info-icon {
  width: 50px;
  height: 50px;
  background: var(--verde);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.info-texto h3 { font-size: .88rem; color: var(--gris-medio); font-weight: 600; margin-bottom: .25rem; }
.info-texto p { font-size: 1rem; font-weight: 800; color: var(--negro); line-height: 1.4; }
.info-texto a { color: var(--verde); text-decoration: none; }
.info-texto a:hover { text-decoration: underline; }
.map-card {
  background: var(--gris-claro);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
}
.map-card h2 { color: var(--verde); font-size: 1.2rem; font-weight: 800; margin-bottom: .8rem; }
.map-btns { display: flex; gap: .8rem; margin-bottom: 1rem; flex-wrap: wrap; }
.map-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
  transition: opacity .2s;
}
.map-btn:hover { opacity: .85; }
.map-btn.gmaps { background: #4285F4; color: var(--blanco); }
.map-btn.waze  { background: #33CCFF; color: var(--negro); }
.map-container { border-radius: var(--radius); overflow: hidden; height: 300px; }
.map-container iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── Footer ────────────────────────────────────────────────── */
footer {
  background: #070f09;
  color: rgba(255,255,255,0.38);
  text-align: center;
  padding: 1rem;
  font-size: .75rem;
  margin-top: auto;
}
footer a { color: rgba(255,255,255,0.38); text-decoration: none; margin: 0 .5rem; }
footer a:hover { color: var(--amarillo); }
.footer-links { margin-bottom: .5rem; }

/* ── WhatsApp float ────────────────────────────────────────── */
.wsp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  z-index: 300;
  transition: transform .2s;
}
.wsp-float:hover { transform: scale(1.06); }
.wsp-float svg { width: 28px; height: 28px; fill: white; }
.wsp-label { font-size: .55rem; color: white; font-weight: bold; margin-top: 2px; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 680px) {
  html { scroll-behavior: auto; }

  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  nav { height: 70px; padding: 0 1rem; }
  .nav-logo img { height: 45px; }
  .nav-mobile { top: 70px; }

  /* Breadcrumbs */
  .breadcrumbs { padding: .5rem 1rem; font-size: .7rem; }

  /* Hero */
  .hero { min-height: auto; }
  .hero-badge-btn { margin: 1.4rem auto 1rem; font-size: .88rem; padding: 12px 24px; }
  .hero-inner { grid-template-columns: 1fr; padding: 0 1rem 2rem; gap: 1.5rem; }
  .hero-left h1 { font-size: 1.65rem; }
  .hero-cta-text { font-size: .92rem; }
  .hero-left p { font-size: .93rem; }
  .precio-box .monto { font-size: 2.6rem; }
  .detalles-card { padding: 1.2rem; }
  .detalle-icon { width: 32px; height: 32px; font-size: 1rem; }
  .detalle-texto .etiq { font-size: .8rem; }
  .detalle-texto .val { font-size: 1rem; }

  /* Sections */
  .editorial-section,
  .conciertos-section { padding: 0 1rem; margin-top: 2rem; }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-section h2,
  .conciertos-section h2 { font-size: 1.3rem; }
  .concierto-item { flex-wrap: wrap !important; gap: .5rem !important; }
  .concierto-fecha { min-width: auto !important; font-size: 1rem !important; }
  .concierto-artista { font-size: 1.5rem !important; line-height: 1.3 !important; }
  .conciertos-section { background: #0d1f15 !important; padding: 1.5rem 1rem !important; border-radius: 12px !important; margin: 1.5rem 1rem 0 !important; }
  .conciertos-section h2 { color: #fff !important; text-align: center !important; }
  .conciertos-section .editorial-intro,
  .conciertos-section > p:not(.conciertos-nota) { display: none !important; }
  .conciertos-nota { color: #ddd !important; text-align: center !important; }

  /* FAQ */
  .faq-section { padding: 0 1rem; margin: 2rem auto; }
  .faq-container { padding: 1rem; }
  .faq-container h2 { font-size: 1.4rem; }
  .faq-question { padding: .8rem 1rem; font-size: .9rem; }
  .faq-answer { font-size: .85rem; }

  /* Reservas */
  .main-container { padding: 0 1rem; margin: 1.5rem auto; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 1.2rem; }
  .step-line { width: 30px; }
  .step-label { font-size: .68rem; }
  /* Tabla eventos mobile: compacta, botón visible */
  .events-table { font-size: .82rem; }
  .events-table thead th { padding: .5rem .4rem; font-size: .7rem; }
  .events-table td { padding: .55rem .4rem; }
  .events-table .fecha-cell { font-size: .85rem; white-space: nowrap; }
  .events-table .artista-cell { font-size: .82rem; }
  .btn-select { padding: 5px 9px; font-size: .76rem; min-width: 0; }

  /* Index: concierto-item mobile */
  .concierto-fecha { font-size: 1rem; min-width: auto; }

  /* Reviews */
  .reviews-section { padding: 0 1rem; }
  .reviews-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .contact-form-card,
  .info-card { padding: 1.2rem; }
  .page-header h1 { font-size: 1.8rem; }
  .info-icon { width: 40px; height: 40px; font-size: 1.1rem; }
  .map-container { height: 220px; }

  /* Footer */
  .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: .3rem; }

  /* WhatsApp */
  .wsp-float { width: 50px; height: 50px; bottom: 16px; right: 16px; }
  .wsp-float svg { width: 24px; height: 24px; }
}
