/* ============================================
   PARQUE BONDINHO PAO DE ACUCAR
   Fiel ao design original do site
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --orange: #F27B20;
  --orange-dark: #d96a10;
  --orange-light: #FFF3E6;
  --orange-pale: #FEF7EF;

  --purple-dark: #3B1578;
  --purple: #5B2D9E;
  --purple-mid: #7B42C8;
  --purple-light: #9B5DE5;

  --navy: #1B2141;
  --navy-light: #2D3561;

  --yellow-alert: #FFF9E6;
  --yellow-border: #FFE082;

  --white: #ffffff;
  --bg: #EFF1F6;

  --gray-50: #F8F9FB;
  --gray-100: #EFF1F6;
  --gray-200: #E2E5EB;
  --gray-300: #D0D4DC;
  --gray-400: #A0A7B5;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;

  --success: #16A34A;
  --danger: #DC2626;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.1);

  --radius: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--bg);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--gray-900); }
a { text-decoration: none; color: inherit; transition: all 0.25s var(--ease); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--font-body); border: none; transition: all 0.25s var(--ease); }
ul, ol { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ==============================
   TOP BAR
   ============================== */
.top-bar {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-heading);
}

/* ==============================
   HEADER
   ============================== */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }

.logo-placeholder { display: flex; align-items: center; gap: 8px; font-family: var(--font-heading); }

.logo-icon-circle {
  width: 44px; height: 44px;
  background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 18px;
}

.logo-texts { line-height: 1.15; }
.logo-texts .l-parque { font-size: 9px; font-weight: 600; text-transform: uppercase; color: var(--gray-500); letter-spacing: 1px; display: block; }
.logo-texts .l-bondinho { font-size: 18px; font-weight: 900; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; display: block; }
.logo-texts .l-pda { font-size: 9px; font-weight: 500; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.5px; display: block; }

.main-nav { display: flex; align-items: center; gap: 2px; }

.nav-item {
  position: relative;
}

.nav-item > a {
  font-family: var(--font-heading); font-size: 12.5px; font-weight: 700;
  text-transform: uppercase; color: var(--navy); padding: 8px 12px;
  letter-spacing: 0.3px; border-radius: 6px;
  display: flex; align-items: center; gap: 4px;
}
.nav-item > a:hover { color: var(--orange); }
.nav-item > a.active { color: var(--orange); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s var(--ease);
  z-index: 100;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.15s;
}

.nav-dropdown a:hover {
  background: var(--orange-light);
  color: var(--orange);
  padding-left: 22px;
}

.header-right { display: flex; align-items: center; gap: 10px; }

.header-icon-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: transparent; border: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-600); font-size: 18px; position: relative;
}
.header-icon-btn:hover { color: var(--orange); }
.header-icon-btn .badge-dot {
  position: absolute; top: 4px; right: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-size: 8px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.lang-btn {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 600; color: var(--gray-600);
  background: none; border: none; padding: 4px;
}

.btn-comprar-header {
  background: var(--orange); color: var(--white); border: none;
  padding: 10px 22px; border-radius: var(--radius);
  font-family: var(--font-heading); font-size: 13px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
.btn-comprar-header:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(242,123,32,0.35); color: var(--white); }

.nav-toggle { display: none; background: none; border: none; font-size: 26px; color: var(--navy); padding: 4px; }

/* ==============================
   HERO BANNER
   ============================== */
.hero-banner {
  background: linear-gradient(135deg, #e06a10 0%, var(--orange) 40%, #f5952e 70%, #f9a84a 100%);
  position: relative;
  padding: 56px 0 72px;
  overflow: hidden;
}

.hero-banner::before {
  content: ''; position: absolute;
  top: -50%; right: -20%;
  width: 900px; height: 900px;
  border-radius: 50%;
  border: 60px solid rgba(255,255,255,0.08);
}

.hero-banner::after {
  content: ''; position: absolute;
  top: -30%; right: -10%;
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 50px solid rgba(255,255,255,0.06);
}

.hero-content { position: relative; z-index: 2; color: var(--white); }

.hero-content h1 {
  font-size: 48px; font-weight: 900;
  text-transform: uppercase; color: var(--white);
  letter-spacing: 1px;
}

/* Breadcrumb */
.breadcrumb-bar { background: var(--navy); padding: 10px 0; }

.breadcrumb-inner {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.6);
}

.breadcrumb-inner a { color: rgba(255,255,255,0.6); }
.breadcrumb-inner a:hover { color: var(--white); }
.breadcrumb-inner .bi-signpost-2-fill { color: var(--orange); }
.breadcrumb-inner .current { color: var(--white); font-weight: 600; }

/* ==============================
   STEPS BAR
   ============================== */
.steps-section { padding: 24px 0 0; }

.steps-bar { display: flex; align-items: center; justify-content: center; gap: 40px; }

.step-item { display: flex; align-items: center; gap: 10px; }

.step-circle {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gray-300); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 14px; font-weight: 700; flex-shrink: 0;
}

.step-item.active .step-circle { background: var(--orange); box-shadow: 0 2px 10px rgba(242,123,32,0.4); }
.step-item.done .step-circle { background: var(--success); }

.step-text { font-family: var(--font-heading); font-size: 14px; font-weight: 600; color: var(--gray-400); }
.step-item.active .step-text { color: var(--gray-900); font-weight: 700; }
.step-item.done .step-text { color: var(--gray-600); }
.step-item.done { cursor: pointer; }

/* ==============================
   BOOKING LAYOUT
   ============================== */
.booking-section { padding: 24px 0 0; }

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

/* ==============================
   MAIN PANEL
   ============================== */
.main-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.panel-header {
  padding: 24px 28px 0;
  display: flex; align-items: center; gap: 12px;
}

.panel-icon {
  width: 36px; height: 36px;
  background: var(--orange); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 16px; flex-shrink: 0;
}

.panel-header h2 {
  font-size: 18px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--gray-900); margin: 0;
}

.panel-body { padding: 20px 28px 28px; }

/* ==============================
   TICKET CARDS (faithful to screenshots)
   ============================== */
.ticket-list { display: flex; flex-direction: column; gap: 24px; }

.ticket-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  transition: all 0.25s var(--ease);
}

.ticket-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); }
.ticket-card.selected { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,123,32,0.15); }

.ticket-card-inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 200px;
}

.ticket-card-image {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #ddd, #eee);
}

.ticket-card-image img { width: 100%; height: 100%; object-fit: cover; }

.ticket-card-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ticket-card-body h3 {
  font-size: 17px; font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.ticket-card-body .ticket-desc {
  font-size: 14px; color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 10px;
  font-style: italic;
}

.ticket-info-link {
  font-size: 13px; color: var(--orange);
  font-weight: 600; cursor: pointer;
  display: inline-block;
  margin-bottom: 14px;
}

.ticket-info-link:hover { color: var(--orange-dark); text-decoration: underline; }

.ticket-details-content {
  display: none;
  padding: 12px 0 4px;
  border-top: 1px solid var(--gray-200);
  margin-top: 4px;
  text-align: left;
  width: 100%;
}

.ticket-details-content.show { display: block; }

.ticket-details-content li {
  font-size: 12.5px; color: var(--gray-600);
  padding: 3px 0; display: flex; align-items: center; gap: 6px;
}

.ticket-details-content li .bi { color: var(--orange); font-size: 11px; }

.ticket-detail-prices {
  margin-top: 8px; padding-top: 8px;
  border-top: 1px dashed var(--gray-200);
  display: flex; gap: 16px; font-size: 12px;
}
.ticket-detail-prices span { color: var(--gray-500); }
.ticket-detail-prices strong { color: var(--gray-800); }

.btn-quero-esse {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; background: var(--orange); color: var(--white);
  border: none; padding: 10px 36px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.5px;
}

.btn-quero-esse:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(242,123,32,0.4);
}

.ticket-card.selected .btn-quero-esse { background: var(--success); }

/* ==============================
   ALERT BOX (yellow "Atenção")
   ============================== */
.alert-box {
  background: var(--yellow-alert);
  border: 1.5px solid var(--yellow-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 20px;
}

.alert-box .alert-title {
  font-weight: 700; font-size: 14px;
  color: var(--gray-900);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 4px;
}

.alert-box .alert-title .dot {
  width: 10px; height: 10px;
  background: var(--orange); border-radius: 50%;
}

.alert-box p {
  font-size: 13.5px; color: var(--gray-600); margin: 0;
}

.alert-box .alert-link {
  display: block; margin-top: 10px;
  font-size: 13px; color: var(--gray-500);
}

/* ==============================
   RULES ACCORDION (orange titles)
   ============================== */
.rules-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-top: 20px;
  overflow: hidden;
}

.rule-item { border-bottom: 1px solid var(--gray-200); }
.rule-item:last-child { border-bottom: none; }

.rule-btn {
  width: 100%; display: flex;
  align-items: center; justify-content: space-between;
  padding: 18px 28px;
  background: var(--white); border: none;
  font-family: var(--font-heading);
  font-size: 15px; font-weight: 800;
  text-transform: uppercase;
  color: var(--orange);
  text-align: left;
  letter-spacing: 0.3px;
}

.rule-btn:hover { background: var(--gray-50); }
.rule-btn.open { background: var(--orange-light); }

.rule-btn .rule-chevron { font-size: 18px; color: var(--gray-400); transition: transform 0.3s; }
.rule-btn.open .rule-chevron { transform: rotate(180deg); color: var(--orange); }

.rule-content { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.rule-content-inner { padding: 0 28px 20px; font-size: 13.5px; color: var(--gray-600); line-height: 1.7; }

/* ==============================
   NEWSLETTER SECTION (orange)
   ============================== */
.newsletter-section {
  background: var(--orange);
  padding: 40px 0;
  margin-top: 40px;
  text-align: center;
  color: var(--white);
}

.newsletter-section h3 {
  font-size: 24px; font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.newsletter-section p {
  font-size: 14px; opacity: 0.9;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
  justify-content: center;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--white);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 220px;
}

.newsletter-input::placeholder { color: var(--gray-400); }

.newsletter-send {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}

.newsletter-send:hover { background: var(--white); color: var(--orange); }

/* ==============================
   FOOTER (orange with wave pattern)
   ============================== */
.site-footer {
  background: var(--orange);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: ''; position: absolute;
  top: -40%; right: -15%;
  width: 800px; height: 800px;
  border-radius: 50%;
  border: 50px solid rgba(255,255,255,0.06);
  pointer-events: none;
}

.site-footer::after {
  content: ''; position: absolute;
  bottom: -30%; left: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 40px solid rgba(255,255,255,0.04);
  pointer-events: none;
}

.footer-main {
  position: relative; z-index: 2;
  padding: 48px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.footer-brand .footer-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 12.5px; line-height: 1.5;
  opacity: 0.85; margin-bottom: 4px;
}

.footer-brand .footer-contact {
  font-size: 12.5px; opacity: 0.85;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 4px;
}

.footer-social {
  display: flex; gap: 10px; margin-top: 16px;
}

.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 17px;
}

.footer-social a:hover { background: rgba(255,255,255,0.3); transform: translateY(-2px); }

.footer-col h5 {
  font-size: 13px; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  color: var(--white);
}

.footer-links li { margin-bottom: 6px; }

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

.footer-links a:hover { color: var(--white); text-decoration: underline; }

/* Partners & Certificates */
.footer-partners {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 32px 0;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 32px;
}

.footer-partners .divider {
  background: rgba(255,255,255,0.2);
}

.partners-col h5, .certs-col h5 {
  font-size: 16px; font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
  color: var(--white);
}

.partner-logos, .cert-logos {
  display: flex; flex-wrap: wrap;
  gap: 16px; justify-content: center;
  align-items: center;
}

.partner-logo, .cert-logo {
  width: 80px; height: 50px;
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: rgba(255,255,255,0.7);
  font-weight: 600; text-align: center;
  padding: 4px;
}

/* Footer bottom links */
.footer-bottom-bar {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 16px 0;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 12px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

.footer-bottom-links a:hover { color: var(--white); }

.footer-copyright {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* ==============================
   SIDEBAR
   ============================== */
.sidebar {
  display: flex; flex-direction: column;
  gap: 20px; position: sticky; top: 96px;
}

.info-tips-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

.info-tip {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: flex-start;
}

.info-tip:first-child { padding-top: 0; }
.info-tip:last-child { border-bottom: none; padding-bottom: 0; }

.info-tip-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 20px; flex-shrink: 0;
}

.info-tip-text {
  font-size: 14px; font-weight: 600;
  color: var(--gray-800); line-height: 1.45;
}

.promo-banner-card {
  border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
  min-height: 260px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}

.promo-banner-card .promo-bg {
  position: absolute; right: 0; top: 0;
  width: 55%; height: 100%; object-fit: cover;
}

.promo-banner-card .promo-content {
  position: relative; z-index: 2;
  padding: 28px 24px; color: var(--white);
  max-width: 55%;
}

.promo-banner-card .promo-content h3 {
  font-size: 30px; font-weight: 900;
  color: var(--white); line-height: 1.1; margin-bottom: 10px;
}

.promo-banner-card .promo-content p {
  font-size: 13px; opacity: 0.9;
  margin-bottom: 16px; line-height: 1.4;
}

.promo-banner-card .promo-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px;
}

.btn-saiba-mais {
  background: var(--orange);
  border: 2px solid var(--white);
  color: var(--white); padding: 8px 20px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 800;
  text-transform: uppercase;
}

.btn-saiba-mais:hover { background: var(--white); color: var(--orange); }

/* Summary card */
.summary-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.summary-card-header {
  background: var(--navy); padding: 16px 20px;
  color: var(--white); display: flex; align-items: center; gap: 8px;
}
.summary-card-header h4 { font-size: 14px; font-weight: 700; color: var(--white); margin: 0; text-transform: uppercase; }

.summary-card-body { padding: 16px 20px; }
.summary-empty { text-align: center; padding: 20px 10px; color: var(--gray-400); }
.summary-empty .bi { font-size: 28px; display: block; margin-bottom: 6px; opacity: 0.4; }
.summary-empty p { font-size: 12.5px; margin: 0; }

.s-line { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--gray-200); gap: 10px; }
.s-line:last-child { border-bottom: none; }
.s-line .sl { font-size: 12.5px; color: var(--gray-500); }
.s-line .sv { font-size: 12.5px; font-weight: 600; color: var(--gray-800); text-align: right; }

.summary-card-footer {
  padding: 14px 20px;
  background: var(--orange-light);
  border-top: 2px solid var(--orange);
  display: flex; justify-content: space-between; align-items: center;
}

.summary-total-label { font-family: var(--font-heading); font-size: 14px; font-weight: 700; text-transform: uppercase; }
.summary-total-value { font-family: var(--font-heading); font-size: 22px; font-weight: 900; color: var(--orange); }

/* ==============================
   CALENDAR
   ============================== */
.calendar-wrapper { max-width: 400px; margin: 0 auto; }

.cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal-nav h4 { font-size: 16px; font-weight: 700; text-transform: capitalize; }

.cal-btn {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--gray-200); background: var(--white);
  display: flex; align-items: center; justify-content: center; color: var(--gray-600);
}
.cal-btn:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }

.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }

.cal-head { text-align: center; font-size: 11px; font-weight: 700; color: var(--gray-400); padding: 6px 0; text-transform: uppercase; }

.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 500; border-radius: var(--radius);
  cursor: pointer; transition: all 0.2s; color: var(--gray-700); position: relative;
}
.cal-day:hover:not(.off):not(.empty) { background: var(--orange-light); color: var(--orange); }
.cal-day.today { font-weight: 700; color: var(--orange); }
.cal-day.today::after { content: ''; position: absolute; bottom: 3px; width: 4px; height: 4px; border-radius: 50%; background: var(--orange); }
.cal-day.sel { background: var(--orange); color: var(--white); font-weight: 700; box-shadow: 0 2px 8px rgba(242,123,32,0.35); }
.cal-day.sel::after { display: none; }
.cal-day.off { color: var(--gray-300); cursor: default; text-decoration: line-through; }
.cal-day.empty { cursor: default; }

.cal-legend { display: flex; gap: 18px; justify-content: center; margin-top: 14px; font-size: 11.5px; color: var(--gray-500); }
.cal-legend span { display: flex; align-items: center; gap: 5px; }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot.d-avail { background: var(--orange); }
.dot.d-today { background: transparent; border: 2px solid var(--orange); }
.dot.d-off { background: var(--gray-300); }

/* ==============================
   TIME SLOTS
   ============================== */
.time-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; max-width: 440px; margin: 0 auto; }

.time-slot {
  padding: 12px; border: 2px solid var(--gray-200);
  border-radius: var(--radius); text-align: center;
  cursor: pointer; background: var(--white);
}
.time-slot:hover:not(.out) { border-color: var(--orange); background: var(--orange-light); }
.time-slot.pick { border-color: var(--orange); background: var(--orange); color: var(--white); }
.time-slot.out { opacity: 0.3; cursor: not-allowed; }
.time-slot .t-time { font-family: var(--font-heading); font-size: 15px; font-weight: 700; }
.time-slot .t-spots { font-size: 11px; color: var(--gray-400); margin-top: 2px; }
.time-slot.pick .t-spots { color: rgba(255,255,255,0.7); }

/* ==============================
   VISITORS
   ============================== */
.visitors-list { max-width: 500px; margin: 0 auto; }
.vis-row { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; border-bottom: 1px solid var(--gray-200); }
.vis-row:last-child { border-bottom: none; }
.vis-info h5 { font-size: 15px; font-weight: 700; color: var(--gray-800); margin-bottom: 1px; }
.vis-info .vis-age { font-size: 12px; color: var(--gray-400); }
.vis-info .vis-price { font-size: 14px; font-weight: 700; color: var(--orange); margin-top: 2px; }
.vis-counter { display: flex; align-items: center; gap: 14px; }
.cnt-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid var(--gray-300); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--gray-600);
}
.cnt-btn:hover:not(:disabled) { border-color: var(--orange); color: var(--orange); }
.cnt-btn:disabled { opacity: 0.25; cursor: not-allowed; }
.cnt-val { font-family: var(--font-heading); font-size: 18px; font-weight: 800; min-width: 28px; text-align: center; }
.vis-subtotal {
  margin-top: 16px; padding: 16px; background: var(--orange-light);
  border-radius: var(--radius-md); display: flex; justify-content: space-between; align-items: center;
  border: 1px solid rgba(242,123,32,0.2);
}
.vis-subtotal .vsl { font-family: var(--font-heading); font-weight: 700; }
.vis-subtotal .vsv { font-family: var(--font-heading); font-size: 22px; font-weight: 900; color: var(--orange); }

/* ==============================
   REVIEW
   ============================== */
.review-card { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; max-width: 600px; margin: 0 auto; }
.review-hd { background: var(--navy); color: var(--white); padding: 16px 24px; display: flex; align-items: center; gap: 10px; }
.review-hd h4 { color: var(--white); font-size: 15px; font-weight: 800; text-transform: uppercase; margin: 0; }
.review-bd { padding: 20px 24px; }
.rv-line { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--gray-200); }
.rv-line:last-child { border-bottom: none; }
.rv-line .rl { font-size: 13px; color: var(--gray-500); }
.rv-line .rv { font-size: 14px; font-weight: 600; color: var(--gray-800); text-align: right; }
.review-ft { padding: 16px 24px; background: var(--orange-light); border-top: 2px solid var(--orange); display: flex; justify-content: space-between; align-items: center; }
.review-ft .rfl { font-family: var(--font-heading); font-size: 16px; font-weight: 800; text-transform: uppercase; }
.review-ft .rfv { font-family: var(--font-heading); font-size: 28px; font-weight: 900; color: var(--orange); }

/* ==============================
   CHECKOUT
   ============================== */
.checkout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 660px; margin: 0 auto; }
.fg { margin-bottom: 14px; }
.fg label { display: block; font-size: 12.5px; font-weight: 700; color: var(--gray-700); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.3px; }
.f-input {
  width: 100%; padding: 11px 14px; border: 2px solid var(--gray-200);
  border-radius: var(--radius); font-size: 14px; font-family: var(--font-body);
  color: var(--gray-800); background: var(--white);
}
.f-input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,123,32,0.1); }
.f-input::placeholder { color: var(--gray-400); }
.pay-box { padding: 20px; background: var(--orange-light); border: 1px solid rgba(242,123,32,0.2); border-radius: var(--radius-md); }
.pay-box .pb-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.pay-box .pbl { font-family: var(--font-heading); font-weight: 700; }
.pay-box .pbv { font-family: var(--font-heading); font-size: 24px; font-weight: 900; color: var(--orange); }
.pay-box .pb-method { font-size: 12px; color: var(--gray-500); display: flex; align-items: center; gap: 6px; }

/* ==============================
   CONFIRMATION
   ============================== */
.confirm-wrap { text-align: center; padding: 36px 16px; }
.confirm-check {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--success); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; margin: 0 auto 18px;
  animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popIn { from { transform: scale(0); } to { transform: scale(1); } }
.confirm-wrap h2 { font-size: 24px; margin-bottom: 4px; }
.confirm-wrap .order-id { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; }
.confirm-box { max-width: 420px; margin: 0 auto 24px; text-align: left; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 18px; }
.confirm-box .cb-row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px dashed var(--gray-200); font-size: 13px; }
.confirm-box .cb-row:last-child { border-bottom: none; }
.confirm-box .cbl { color: var(--gray-500); }
.confirm-box .cbv { font-weight: 600; color: var(--gray-800); }
.pix-area { max-width: 380px; margin: 0 auto 20px; padding: 24px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); }
.pix-area h4 { font-size: 16px; margin-bottom: 2px; }
.pix-area .pix-sub { font-size: 12.5px; color: var(--gray-400); margin-bottom: 14px; }
.pix-qr { width: 170px; height: 170px; margin: 0 auto 14px; border: 1px solid var(--gray-200); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.pix-code { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 10px 64px 10px 12px; font-family: monospace; font-size: 10.5px; word-break: break-all; color: var(--gray-600); position: relative; }
.pix-copy { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); background: var(--orange); color: var(--white); border: none; padding: 5px 12px; border-radius: 6px; font-size: 11px; font-weight: 700; }
.pix-copy:hover { background: var(--orange-dark); }
.pix-timer { font-size: 12px; color: var(--gray-400); margin-top: 10px; }

/* ==============================
   BUTTONS
   ============================== */
.btn-primary-b {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; background: var(--orange); color: var(--white);
  padding: 12px 32px; border-radius: var(--radius-full);
  font-family: var(--font-heading); font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.5px; border: none;
}
.btn-primary-b:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(242,123,32,0.35); color: var(--white); }
.btn-outline-b {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; background: var(--white); color: var(--gray-600);
  border: 2px solid var(--gray-300); padding: 10px 28px;
  border-radius: var(--radius-full); font-family: var(--font-heading);
  font-size: 13px; font-weight: 700; text-transform: uppercase;
}
.btn-outline-b:hover { border-color: var(--gray-400); color: var(--gray-800); }

.wizard-actions { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; margin-top: 20px; border-top: 1px solid var(--gray-200); }

.section-title { text-align: center; margin-bottom: 16px; }
.section-title p { font-size: 14px; color: var(--gray-500); font-style: italic; }

/* ==============================
   LOADING / TOAST
   ============================== */
.loading-overlay {
  position: fixed; inset: 0; background: rgba(255,255,255,0.92);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 9999; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.loading-overlay.active { opacity: 1; pointer-events: all; }
.loader { width: 40px; height: 40px; border: 3px solid var(--gray-200); border-top-color: var(--orange); border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.loader-text { margin-top: 12px; font-size: 14px; color: var(--gray-500); font-weight: 500; }

.toast-container { position: fixed; bottom: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; }
.toast-msg { padding: 12px 20px; border-radius: var(--radius); color: var(--white); font-size: 13px; font-weight: 600; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 8px; animation: slideR 0.3s; min-width: 260px; }
.toast-msg.success { background: var(--success); }
.toast-msg.error { background: var(--danger); }
.toast-msg.info { background: var(--orange); }
@keyframes slideR { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

.fade-up { animation: fadeUp 0.35s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 991.98px) {
  .booking-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .btn-comprar-header { display: none; }
  .header-icon-btn.desktop-only { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-partners { grid-template-columns: 1fr; }
  .footer-partners .divider { display: none; }
  .checkout-grid { grid-template-columns: 1fr; }
  .steps-bar { gap: 20px; }
  .step-text { display: none; }
}

@media (max-width: 767.98px) {
  .top-bar { font-size: 12px; padding: 8px 12px; }
  .hero-banner { padding: 36px 0 48px; }
  .hero-content h1 { font-size: 32px; }
  .panel-body { padding: 16px 16px 20px; }
  .panel-header { padding: 20px 16px 0; }
  .ticket-card-inner { grid-template-columns: 130px 1fr; min-height: auto; }
  .time-grid { grid-template-columns: repeat(3, 1fr); }
  .wizard-actions { flex-direction: column-reverse; gap: 10px; }
  .wizard-actions .btn-primary-b, .wizard-actions .btn-outline-b { width: 100%; }
  .footer-top { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; align-items: stretch; }
  .newsletter-input { max-width: none; }
}

@media (max-width: 575.98px) {
  .ticket-card-inner { grid-template-columns: 1fr; }
  .ticket-card-image { height: 160px; }
  .time-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content h1 { font-size: 26px; }
}

/* Mobile nav */
.mobile-nav { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000; }
.mobile-nav.open { display: block; }
.mobile-nav-panel { position: absolute; right: 0; top: 0; bottom: 0; width: 280px; background: var(--white); padding: 24px; box-shadow: var(--shadow-lg); animation: slideR 0.3s; }
.mobile-nav-close { background: none; border: none; font-size: 24px; color: var(--gray-600); margin-bottom: 24px; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-links a { padding: 12px 16px; border-radius: var(--radius); font-size: 15px; font-weight: 600; color: var(--gray-700); }
.mobile-nav-links a:hover, .mobile-nav-links a.active { background: var(--orange-light); color: var(--orange); }

/* Page content for about/faq */
.page-content { padding: 48px 0 60px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 48px; }
.about-img { height: 340px; border-radius: var(--radius-lg); overflow: hidden; background: #ddd; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { font-size: 28px; color: var(--navy); margin-bottom: 14px; }
.about-text p { color: var(--gray-600); line-height: 1.8; margin-bottom: 10px; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 48px; }
.stat-box { text-align: center; padding: 24px 16px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); }
.stat-box .sn { font-family: var(--font-heading); font-size: 36px; font-weight: 900; color: var(--orange); }
.stat-box .sd { font-size: 13px; color: var(--gray-500); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
.feat-card { padding: 24px 20px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); text-align: center; transition: all 0.25s; }
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feat-card .fc-icon { width: 50px; height: 50px; margin: 0 auto 12px; background: var(--orange-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--orange); }
.feat-card h5 { font-size: 15px; color: var(--gray-800); margin-bottom: 6px; }
.feat-card p { font-size: 13px; color: var(--gray-500); line-height: 1.5; }
.cta-box { background: linear-gradient(135deg, #e06a10, var(--orange), #f5952e); border-radius: var(--radius-lg); padding: 48px; text-align: center; color: var(--white); }
.cta-box h3 { color: var(--white); font-size: 24px; margin-bottom: 8px; }
.cta-box p { opacity: 0.8; margin-bottom: 20px; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); margin-bottom: 8px; overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: var(--white); border: none; font-size: 14px; font-weight: 600; color: var(--gray-800); text-align: left; cursor: pointer; font-family: var(--font-body); }
.faq-q:hover { background: var(--orange-light); color: var(--orange); }
.faq-q.open { background: var(--orange-light); color: var(--orange); }
.faq-q .faq-chevron { transition: transform 0.3s; font-size: 18px; flex-shrink: 0; }
.faq-q.open .faq-chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a-inner { padding: 0 20px 16px; font-size: 13.5px; color: var(--gray-600); line-height: 1.7; }

@media (max-width: 991.98px) {
  .about-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767.98px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .features-grid { grid-template-columns: 1fr; }
}
