/* Reset & Base Styles */
:root {
  --primary-color: #005899;
  --dark-color: #0a4975;
  --header-text: #0e5385;
  --secondary-color: #5d8aa6;
  --secondary-light: rgba(93, 138, 166, 0.15);
  --bg-light: #f8fafc;
  --card-bg: #ffffff;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --white: #ffffff;
  --shadow-sm: 0 2px 4px rgba(0, 88, 153, 0.08);
  --shadow-md: 0 6px 18px rgba(0, 88, 153, 0.12);
  --shadow-lg: 0 10px 25px rgba(10, 73, 117, 0.2);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: all 0.25s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-dark);
  background-color: #f4f7f9;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  border-top: 6px solid var(--primary-color);
  border-bottom: 4px solid var(--primary-color);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 88, 153, 0.15);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand-logo img {
  height: 65px;
  width: auto;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar-brand-logo img:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-item .nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
}

.nav-link-number {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--secondary-color);
  text-transform: none;
}

.nav-item .nav-link:hover {
  color: var(--primary-color);
  background: var(--secondary-light);
}

.btn-header-cta {
  background: var(--primary-color);
  color: var(--white) !important;
  font-weight: 800;
  padding: 0.7rem 1.4rem;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 88, 153, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.88rem;
}

.btn-header-cta:hover {
  background: var(--dark-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(10, 73, 117, 0.4);
}

.mobile-toggle {
  display: none;
  background: none;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 1.5rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* HERO HEADER SECTION */
.hero-section {
  padding-top: 130px;
  padding-bottom: 3rem;
  background: linear-gradient(135deg, #ffffff 0%, #eef5fa 100%);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.hero-img-box img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-img-box:hover img {
  transform: scale(1.03);
}

.hero-title-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.draw-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0, 88, 153, 0.1);
  color: var(--dark-color);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.95rem;
  width: fit-content;
  border: 1px solid rgba(0, 88, 153, 0.2);
}

/* PROGRESS BAR (MATCHING ORIGINAL SITE SCREENSHOT) */
.progress-contain {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
}

.progress-total {
  border: 3px ridge #0e5385c4;
  background: #0058990a;
  height: 24px;
  border-radius: 12px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.progress-actual {
  background-color: #005899;
  background: linear-gradient(to right, #0058996b, #005899);
  box-shadow: 0px 0px 10px 1px #0e53859b;
  border-right: 2px solid #0e5385;
  height: 24px;
  border-radius: 12px;
  transition: width 0.4s ease;
  position: relative;
  z-index: 1;
}

.progress-percent.inner {
  color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
  z-index: 2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--header-text);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero-description-card {
  background: var(--white);
  border-left: 5px solid var(--primary-color);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  white-space: pre-line;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #334155;
}

.hero-description-card strong {
  color: var(--dark-color);
}

/* TICKET PURCHASE SECTION (#comprar) */
.purchase-section {
  padding: 4rem 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.card-purchase {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(0, 88, 153, 0.1);
}

.section-title {
  text-align: center;
  color: var(--header-text);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.section-title i {
  color: var(--primary-color);
}

/* Multiplier & PlusMinus Box */
.quantity-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 2px dashed rgba(0, 88, 153, 0.2);
}

.plusminus {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.btn-pm {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 88, 153, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-pm:hover {
  background: var(--secondary-color);
  transform: scale(1.08);
}

.btn-pm:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.qty-input-wrapper {
  text-align: center;
}

.qty-input-wrapper input {
  width: 90px;
  height: 50px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-sm);
  color: var(--dark-color);
  background: var(--white);
  outline: none;
}

.qty-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-top: 0.3rem;
  letter-spacing: 1px;
}

.price-display {
  text-align: center;
}

.monto-total {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--dark-color);
}

.monto-total-usd {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Quick Action Buttons (Elegir a la suerte / Buscar) */
.quick-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-luck {
  background: linear-gradient(135deg, #005899, #0a4975);
  color: var(--white);
  border: 3px solid var(--primary-color);
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 88, 153, 0.3);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition);
}

.btn-luck:hover {
  background: linear-gradient(135deg, #0a4975, #005899);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 73, 117, 0.4);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-light);
  padding: 0.4rem 0.8rem;
  border-radius: 30px;
  border: 1px solid #cbd5e1;
}

.search-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.95rem;
  width: 140px;
  padding: 0.3rem;
  font-family: inherit;
}

.btn-search {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}

/* TICKET GRID (CONTINUOUS SCROLL) */
.tickets-grid-container {
  margin-bottom: 2rem;
  background: #f8fafc;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.02);
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(62px, 1fr));
  gap: 8px;
  max-height: 440px;
  overflow-y: auto;
  padding-right: 8px;
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
.tickets-grid::-webkit-scrollbar {
  width: 9px;
}

.tickets-grid::-webkit-scrollbar-track {
  background: #e2e8f0;
  border-radius: 10px;
}

.tickets-grid::-webkit-scrollbar-thumb {
  background: #0a4975;
  border-radius: 10px;
  border: 2px solid #e2e8f0;
}

.tickets-grid::-webkit-scrollbar-thumb:hover {
  background: #005899;
}

/* SECTION PAGINATION CONTROLS (MATCHING USER SCREENSHOT) */
.section-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.btn-nav-page {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 88, 153, 0.3);
  transition: var(--transition);
}

.btn-nav-page:hover {
  background: var(--dark-color);
  transform: scale(1.08);
}

.btn-nav-page:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.page-indicator {
  font-weight: 800;
  color: var(--dark-color);
  font-size: 1rem;
  padding: 0 0.8rem;
}

.ticket-chip {
  background: var(--white);
  border: 1px solid #e2e8f0;
  color: #1e293b;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.65rem 0.2rem;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  user-select: none;
  transition: all 0.15s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.ticket-chip:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 88, 153, 0.12);
}

.ticket-chip.selected {
  background: var(--primary-color) !important;
  color: var(--white) !important;
  border-color: var(--dark-color) !important;
  box-shadow: 0 3px 10px rgba(0, 88, 153, 0.4);
}

.ticket-chip.taken {
  background: #e2e8f0 !important;
  color: #94a3b8 !important;
  border-color: #cbd5e1 !important;
  text-decoration: line-through;
  cursor: not-allowed !important;
  pointer-events: none !important;
  opacity: 0.55;
}

/* FIXED BOTTOM BAR / SELECTION DISPLAY */
.selection-bar {
  background: var(--dark-color);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-md);
  flex-wrap: wrap;
}

.selection-info {
  display: flex;
  flex-direction: column;
}

.selection-info label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary-color);
  font-weight: 700;
}

.selection-count {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffd700;
}

.selected-numbers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: 500px;
}

.selected-tag {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
}

.btn-continue {
  background: #22c55e;
  color: var(--white);
  border: none;
  padding: 0.7rem 1.6rem;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-continue:hover {
  background: #16a34a;
  transform: scale(1.03);
}

.btn-continue:disabled {
  background: #94a3b8;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

/* FORM STYLES */
.form-subtitle {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 0.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
}

.form-group input, .form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus, .form-group select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 88, 153, 0.15);
}

.phone-input-group {
  display: flex;
  gap: 0.5rem;
}

.phone-input-group select {
  width: 110px;
  flex-shrink: 0;
  font-weight: 600;
}

/* PAYMENT METHODS SELECTION */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.payment-card {
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  text-align: center;
}

.payment-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-2px);
}

.payment-card.selected {
  border-color: var(--primary-color);
  background: rgba(0, 88, 153, 0.04);
  box-shadow: 0 4px 12px rgba(0, 88, 153, 0.15);
}

.payment-card img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.payment-card span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark-color);
}

.bank-details-box {
  background: var(--bg-light);
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  display: none;
}

.bank-details-box.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

.bank-details-box h5 {
  color: var(--dark-color);
  font-weight: 800;
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.bank-row {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
  border-bottom: 1px dashed #cbd5e1;
}

.bank-row:last-child {
  border-bottom: none;
}

.bank-row span.label {
  color: var(--text-muted);
  font-weight: 600;
}

.bank-row span.val {
  font-weight: 800;
  color: var(--dark-color);
}

/* VOUCHER UPLOAD */
.voucher-section {
  background: #f8fafc;
  border: 2px dashed #cbd5e1;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.voucher-upload-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.file-btn {
  background: var(--primary-color);
  color: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.file-btn:hover {
  background: var(--dark-color);
}

.file-name-preview {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
}

.checkbox-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
}

/* CONFIRM BUTTON */
.btn-confirm-all {
  width: 100%;
  background: linear-gradient(135deg, #005899, #0a4975);
  color: var(--white);
  border: none;
  padding: 1.1rem;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 88, 153, 0.35);
  transition: var(--transition);
  margin-top: 1rem;
}

.btn-confirm-all:hover {
  background: linear-gradient(135deg, #0a4975, #005899);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(10, 73, 117, 0.5);
}

/* TICKET VERIFIER SECTION (#tickets) */
.verifier-section {
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, #0a4975 0%, #005899 100%);
  color: var(--white);
}

.verifier-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.verifier-card {
  background: var(--white);
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
}

.verifier-title {
  color: var(--header-text);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.2rem;
}

.verifier-subtitle {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 1.8rem;
  letter-spacing: 2px;
}

.verifier-form {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.verifier-form input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border: 2px solid #cbd5e1;
  border-radius: 30px;
  font-size: 1rem;
  outline: none;
  font-family: inherit;
  font-weight: 600;
  text-align: center;
}

.verifier-form input:focus {
  border-color: var(--primary-color);
}

.btn-verify {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.9rem 1.8rem;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 88, 153, 0.3);
  transition: var(--transition);
}

.btn-verify:hover {
  background: var(--dark-color);
}

.verifier-result {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px dashed #e2e8f0;
  display: none;
}

.verifier-result.active {
  display: block;
}

.buyer-name-tag {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.verified-tickets-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 1rem;
}

.verified-ticket-item {
  background: var(--primary-color);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  box-shadow: 0 3px 8px rgba(0, 88, 153, 0.3);
}

/* PRIZES LIST SECTION (#awards) */
.prizes-section {
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.prizes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

.prize-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.prize-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.prize-card-header {
  background: var(--primary-color);
  color: var(--white);
  padding: 0.8rem 1rem;
  font-weight: 800;
  font-size: 0.95rem;
  text-align: center;
  text-transform: uppercase;
}

.prize-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.prize-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark-color);
}

.prize-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* FAQ SECTION (#faq) */
.faq-section {
  padding: 4rem 1.5rem;
  background: var(--bg-light);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 0.8rem;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  padding: 1.2rem 1.5rem;
  background: var(--primary-color);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: var(--transition);
}

.accordion-header:hover {
  background: var(--dark-color);
}

.accordion-body {
  padding: 1.2rem 1.5rem;
  font-size: 0.92rem;
  color: #334155;
  display: none;
  line-height: 1.6;
}

.accordion-item.active .accordion-body {
  display: block;
}

/* FOOTER */
.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 3rem 1.5rem 1.5rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.4rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary-color);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--white);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

/* FLOATING HELP BUTTON */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* MODAL STYLES */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 73, 117, 0.75);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--white);
  border-radius: 24px;
  max-width: 580px;
  width: 100%;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-icon {
  font-size: 4rem;
  color: #005899;
  margin-bottom: 0.8rem;
}

.modal-title {
  font-size: 1.85rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 0.8rem;
  line-height: 1.25;
}

.modal-subtext {
  font-size: 1rem;
  color: #475569;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.modal-subtext a.link-modal {
  color: #005899;
  font-weight: 700;
  text-decoration: underline;
}

.modal-whatsapp-banner {
  background: #f8fafc;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font-size: 0.92rem;
  color: #1e293b;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  border: 1px dashed #cbd5e1;
}

.link-wa-channel {
  color: #0084ff;
  font-weight: 800;
  text-decoration: underline;
}

.link-wa-channel i {
  color: #25d366;
}

.btn-ver-boletos {
  background: #005899;
  color: var(--white);
  border: none;
  padding: 0.95rem 2.8rem;
  border-radius: 35px;
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 88, 153, 0.35);
  transition: var(--transition);
}

.btn-ver-boletos:hover {
  background: #0a4975;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(10, 73, 117, 0.45);
}

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
  
  .hero-img-box img {
    height: 350px;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    display: none;
    border-bottom: 4px solid var(--primary-color);
  }
  
  .nav-menu.active {
    display: flex;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .selection-bar {
    flex-direction: column;
    text-align: center;
  }
  
  .btn-continue {
    width: 100%;
    justify-content: center;
  }
}
