/* ============================================
   Passabot — Page Styles
   Styles for template pages: routes, companies,
   destinations, blog. Requires base.css.
   ============================================ */

/* ============================================
   SHARED COMPONENTS
   ============================================ */

/* ===== Section Container ===== */
.section-container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

/* ===== Page Hero ===== */
.page-hero {
  max-width: 1320px; margin: 0 auto;
  padding: 160px 40px 80px;
  display: flex; align-items: center; gap: 60px;
}
.page-hero-content { flex: 1; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
  color: var(--text-main);
}
.page-hero .hero-sub {
  font-size: 1.1rem; color: var(--text-muted);
  margin: 20px 0 36px; max-width: 540px;
  line-height: 1.65;
}
.page-hero-visual { flex-shrink: 0; position: relative; }
.page-hero .hero-mascot {
  width: 200px; height: auto;
  filter: drop-shadow(0 12px 32px rgba(28, 38, 27, 0.12));
}
.page-hero .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== Breadcrumb ===== */
.breadcrumb {
  max-width: 1320px; margin: 0 auto;
  padding: 0 40px;
  margin-top: -48px; margin-bottom: 48px;
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  color: var(--text-muted);
}
.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.breadcrumb a:hover { color: var(--c-impulso); }
.breadcrumb span.separator {
  color: var(--card-border);
  font-size: 12px;
  user-select: none;
}
.breadcrumb span.current {
  color: var(--text-main);
  font-weight: 600;
}

/* ===== Info Cards (stats / highlights) ===== */
.info-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; margin-bottom: 64px;
}
.info-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.4s var(--ease-smooth);
}
.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 254, 116, 0.3);
  box-shadow: 0 0 0 1px rgba(224, 254, 116, 0.1), 0 20px 40px rgba(0, 0, 0, 0.06);
}
.info-card-icon {
  width: 56px; height: 56px;
  background: var(--c-impulso); color: var(--c-altitude);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 16px;
}
.info-card-value {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800; letter-spacing: -0.04em;
  color: var(--text-main); line-height: 1.1;
  margin-bottom: 4px;
}
.info-card-label {
  font-size: 0.85rem; color: var(--text-muted);
  font-weight: 500;
}

/* ===== Content Grid ===== */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* ===== CTA Final Section ===== */
.cta-final-section {
  background: var(--c-horizonte);
  padding: 80px 40px;
}
.cta-final-container {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
}
.cta-mascot { width: 100px; height: auto; flex-shrink: 0; }
.cta-final-text { flex: 1; min-width: 240px; }
.cta-final-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  font-weight: 800; color: var(--c-nuvem);
  margin-bottom: 8px; letter-spacing: -0.02em;
}
.cta-final-text p {
  color: rgba(254, 247, 229, 0.7);
  font-size: 1rem; line-height: 1.65;
}

/* ===== LP Footer (simpler) ===== */
.lp-footer {
  background: #0F1A0E; padding: 48px 40px 24px; color: var(--c-nuvem);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(224, 254, 116, 0.08);
}
.footer-inner .footer-brand p {
  color: rgba(254, 247, 229, 0.5);
  font-size: 0.85rem; margin-top: 8px;
}
.lp-footer .footer-links {
  display: flex; gap: 24px;
}
.lp-footer .footer-links a {
  font-size: 0.85rem; color: rgba(254, 247, 229, 0.5);
  transition: color 0.2s ease;
}
.lp-footer .footer-links a:hover { color: var(--c-impulso); }
.lp-footer .footer-bottom {
  max-width: 1100px; margin: 24px auto 0;
}
.lp-footer .footer-bottom p {
  font-size: 0.8rem; color: rgba(254, 247, 229, 0.3);
}


/* ============================================
   ROUTE PAGE STYLES
   ============================================ */

/* ===== Route Hero ===== */
.route-hero {
  position: relative; overflow: hidden;
  min-height: 420px; display: flex; align-items: flex-end;
  padding: 0 0 64px;
}
.route-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.route-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--c-altitude) 0%, rgba(28, 38, 27, 0.5) 50%, transparent 100%);
}
.route-hero-content {
  position: relative; z-index: 1;
  max-width: 1320px; margin: 0 auto; padding: 160px 40px 0;
  width: 100%;
}
.route-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
  color: var(--c-nuvem); margin-bottom: 12px;
}
.route-hero .hero-sub {
  font-size: 1.05rem; color: rgba(254, 247, 229, 0.75);
  max-width: 520px; line-height: 1.65; margin-bottom: 32px;
}

/* ===== Price Table ===== */
.price-table-section { padding: 80px 0; background: var(--bg-main); }
.price-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.price-table thead th {
  background: var(--c-horizonte); color: var(--c-nuvem);
  padding: 16px 24px; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  text-align: left;
}
.price-table tbody td {
  padding: 16px 24px; font-size: 15px; color: var(--text-main);
  border-bottom: 1px solid var(--card-border);
  font-weight: 500;
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover {
  background: rgba(224, 254, 116, 0.06);
}
.price-table .price-value {
  font-weight: 800; color: var(--c-horizonte);
  font-size: 17px;
}
.price-table .price-highlight {
  background: rgba(224, 254, 116, 0.12);
}
.price-table .price-highlight .price-value {
  color: var(--c-altitude);
}

/* ===== Route Map ===== */
.route-map-section { padding: 60px 0; background: var(--bg-main); }
#route-map {
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--card-border);
}
.leaflet-control-attribution { font-size: 10px !important; }

/* ===== Route Steps ===== */
.route-steps-section { padding: 80px 0; background: var(--bg-main); }
.route-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; counter-reset: step-counter;
}
.route-step {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  transition: all 0.4s var(--ease-smooth);
  counter-increment: step-counter;
}
.route-step:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 254, 116, 0.3);
  box-shadow: 0 0 0 1px rgba(224, 254, 116, 0.1), 0 20px 40px rgba(0, 0, 0, 0.06);
}
.route-step-number {
  width: 48px; height: 48px;
  background: var(--c-impulso); color: var(--c-altitude);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; margin-bottom: 20px;
}
.route-step h3 {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 8px;
  color: var(--text-main); letter-spacing: -0.01em;
}
.route-step p {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.65;
}


/* ============================================
   COMPANY PAGE STYLES
   ============================================ */

/* ===== Company Hero ===== */
.company-hero {
  max-width: 1320px; margin: 0 auto;
  padding: 160px 40px 80px;
  display: flex; align-items: center; gap: 48px;
}
.company-hero-content { flex: 1; }
.company-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
  color: var(--text-main);
}
.company-hero .hero-sub {
  font-size: 1.05rem; color: var(--text-muted);
  margin: 16px 0 32px; max-width: 520px; line-height: 1.65;
}
.company-logo-wrap {
  flex-shrink: 0;
  width: 160px; height: 160px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}
.company-logo-wrap img {
  max-width: 100%; max-height: 100%; object-fit: contain;
}

/* ===== Company Stats ===== */
.company-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px; padding: 80px 0;
}
.company-stat {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 28px 24px; text-align: center;
  transition: all 0.4s var(--ease-smooth);
}
.company-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 254, 116, 0.3);
  box-shadow: 0 0 0 1px rgba(224, 254, 116, 0.1), 0 20px 40px rgba(0, 0, 0, 0.06);
}
.company-stat-value {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800; letter-spacing: -0.04em;
  color: var(--c-horizonte); line-height: 1.1;
  margin-bottom: 4px;
}
.company-stat-label {
  font-size: 0.85rem; color: var(--text-muted); font-weight: 500;
}

/* ===== Route List (grid of route cards) ===== */
.route-list-section { padding: 80px 0; background: var(--bg-main); }
.route-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.route-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex; align-items: center; gap: 16px;
  transition: all 0.4s var(--ease-smooth);
}
.route-card:hover {
  transform: translateY(-3px);
  border-color: rgba(224, 254, 116, 0.3);
  box-shadow: 0 0 0 1px rgba(224, 254, 116, 0.1), 0 16px 32px rgba(0, 0, 0, 0.06);
}
.route-card-icon {
  width: 48px; height: 48px;
  background: var(--c-impulso); color: var(--c-altitude);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.route-card-info { flex: 1; }
.route-card-info h3 {
  font-size: 0.95rem; font-weight: 700; color: var(--text-main);
  margin-bottom: 2px;
}
.route-card-info span {
  font-size: 0.8rem; color: var(--text-muted); font-weight: 500;
}
.route-card-arrow {
  color: var(--text-muted); font-size: 18px;
  transition: all 0.3s var(--ease-smooth);
}
.route-card:hover .route-card-arrow {
  color: var(--c-impulso); transform: translateX(4px);
}


/* ============================================
   REGION MAP (SVG Brazil)
   ============================================ */
.region-map-section { padding: 60px 0; background: var(--bg-main); }
.brazil-map-container { display: inline-block; max-width: 400px; width: 100%; }
.brazil-map-svg { width: 100%; height: auto; }
.brazil-map-svg path {
  fill: var(--card-bg);
  stroke: var(--card-border);
  stroke-width: 1.5;
  transition: fill 0.3s ease, opacity 0.3s ease;
}
.brazil-map-svg path:hover { opacity: 0.9; }


/* ============================================
   DESTINATION PAGE STYLES
   ============================================ */

/* ===== Destination Hero ===== */
.destination-hero {
  position: relative; overflow: hidden;
  min-height: 480px; display: flex; align-items: flex-end;
}
.destination-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.destination-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--c-altitude) 0%, rgba(28, 38, 27, 0.4) 60%, transparent 100%);
}
.destination-hero-content {
  position: relative; z-index: 1;
  max-width: 1320px; margin: 0 auto; padding: 180px 40px 64px;
  width: 100%;
}
.destination-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
  color: var(--c-nuvem); margin-bottom: 12px;
}
.destination-hero .hero-sub {
  font-size: 1.1rem; color: rgba(254, 247, 229, 0.75);
  max-width: 560px; line-height: 1.65;
}

/* ===== Highlights (climate, best time, avg cost) ===== */
.highlights-section { padding: 80px 0; background: var(--bg-main); }
.highlights {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.highlight-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: all 0.4s var(--ease-smooth);
}
.highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 254, 116, 0.3);
  box-shadow: 0 0 0 1px rgba(224, 254, 116, 0.1), 0 20px 40px rgba(0, 0, 0, 0.06);
}
.highlight-icon {
  width: 56px; height: 56px;
  background: var(--c-impulso); color: var(--c-altitude);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
}
.highlight-card h3 {
  font-size: 0.85rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.highlight-card .highlight-value {
  font-size: 1.3rem; font-weight: 800; color: var(--text-main);
  letter-spacing: -0.02em;
}
.highlight-card p {
  font-size: 0.85rem; color: var(--text-muted);
  margin-top: 6px; line-height: 1.6;
}

/* ===== Attractions (points of interest) ===== */
.attractions-section { padding: 80px 0; background: var(--bg-main); }
.attractions-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: var(--text-main); margin-bottom: 40px;
}
.attractions {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.attraction-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
}
.attraction-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 254, 116, 0.3);
  box-shadow: 0 0 0 1px rgba(224, 254, 116, 0.1), 0 20px 40px rgba(0, 0, 0, 0.06);
}
.attraction-card-img {
  width: 100%; height: 180px; object-fit: cover;
}
.attraction-card-body { padding: 20px; }
.attraction-card-body h3 {
  font-size: 1rem; font-weight: 700; color: var(--text-main);
  margin-bottom: 6px;
}
.attraction-card-body p {
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.6;
}


/* ============================================
   BLOG STYLES
   ============================================ */

/* ===== Article Header ===== */
.article-header {
  max-width: 800px; margin: 0 auto;
  padding: 160px 40px 48px;
}
.article-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
  color: var(--text-main); margin-bottom: 16px;
}
.article-meta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.article-meta span {
  font-size: 0.85rem; color: var(--text-muted); font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
}
.article-meta .meta-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--card-border);
}
.article-cover {
  width: 100%; border-radius: var(--radius-xl);
  overflow: hidden; margin-bottom: 48px;
}
.article-cover img {
  width: 100%; height: auto; display: block;
}

/* ===== Article Body (prose) ===== */
.article-body {
  max-width: 720px; margin: 0 auto;
  padding: 0 40px 80px;
}
.article-body h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800; line-height: 1.2; letter-spacing: -0.02em;
  color: var(--text-main);
  margin: 48px 0 16px;
}
.article-body h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700; line-height: 1.3; letter-spacing: -0.01em;
  color: var(--text-main);
  margin: 36px 0 12px;
}
.article-body p {
  font-size: 1.05rem; color: var(--text-main);
  line-height: 1.8; margin-bottom: 20px;
  font-weight: 400;
}
.article-body ul,
.article-body ol {
  margin: 0 0 20px 24px;
  font-size: 1.05rem; color: var(--text-main);
  line-height: 1.8;
}
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  background: rgba(224, 254, 116, 0.08);
  border-left: 4px solid var(--c-impulso);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 1.05rem; color: var(--text-main);
  line-height: 1.75; font-weight: 500;
  font-style: italic;
}
.article-body img {
  width: 100%; border-radius: var(--radius-lg);
  margin: 32px 0;
}
.article-body a {
  color: var(--c-horizonte);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(224, 254, 116, 0.5);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}
.article-body a:hover {
  text-decoration-color: var(--c-impulso);
}

/* ===== Related Posts ===== */
.related-posts-section {
  padding: 80px 0; background: var(--bg-main);
  border-top: 1px solid var(--card-border);
}
.related-posts-section h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800; letter-spacing: -0.02em;
  color: var(--text-main); margin-bottom: 36px;
  text-align: center;
}
.related-posts {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
}
.post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 254, 116, 0.3);
  box-shadow: 0 0 0 1px rgba(224, 254, 116, 0.1), 0 20px 40px rgba(0, 0, 0, 0.06);
}
.post-card-img {
  width: 100%; height: 180px; object-fit: cover;
}
.post-card-body { padding: 20px; }
.post-card-body h3 {
  font-size: 1rem; font-weight: 700; color: var(--text-main);
  margin-bottom: 8px; line-height: 1.35;
  letter-spacing: -0.01em;
}
.post-card-body p {
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.6;
  margin-bottom: 12px;
}
.post-card-body .post-card-meta {
  font-size: 0.8rem; color: var(--text-muted); font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}


/* ============================================
   RESPONSIVE — 768px (tablet / mobile)
   ============================================ */
@media (max-width: 768px) {

  /* Page Hero */
  .page-hero {
    flex-direction: column; padding: 120px 24px 60px;
    gap: 32px; text-align: center;
  }
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .page-hero .hero-sub { margin-left: auto; margin-right: auto; }
  .page-hero .hero-mascot { width: 140px; }
  .page-hero .hero-actions { justify-content: center; }

  /* Breadcrumb */
  .breadcrumb {
    padding: 0 24px; margin-top: -32px; margin-bottom: 32px;
    font-size: 13px;
  }

  /* Section Container */
  .section-container { padding: 0 24px; }

  /* Info Cards */
  .info-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px; margin-bottom: 48px;
  }
  .info-card { padding: 20px 16px; }

  /* CTA Final */
  .cta-final-section { padding: 60px 24px; }
  .cta-final-container {
    flex-direction: column; text-align: center; gap: 28px;
  }
  .cta-mascot { width: 80px; }

  /* LP Footer */
  .lp-footer { padding: 40px 24px 20px; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .lp-footer .footer-links { flex-wrap: wrap; gap: 16px; justify-content: center; }

  /* Route Hero */
  .route-hero { min-height: 360px; }
  .route-hero-content { padding: 120px 24px 0; }
  .route-hero h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  /* Price Table */
  .price-table-section { padding: 60px 0; }
  .price-table { font-size: 14px; }
  .price-table thead th { padding: 12px 16px; font-size: 12px; }
  .price-table tbody td { padding: 12px 16px; font-size: 14px; }

  /* Route Map */
  .route-map-section { padding: 40px 0; }
  #route-map { height: 280px; }

  /* Route Steps */
  .route-steps-section { padding: 60px 0; }
  .route-steps { grid-template-columns: 1fr; gap: 16px; }

  /* Company Hero */
  .company-hero {
    flex-direction: column; padding: 120px 24px 60px;
    gap: 32px; text-align: center;
  }
  .company-logo-wrap { width: 120px; height: 120px; margin: 0 auto; }

  /* Company Stats */
  .company-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Route List */
  .route-list-section { padding: 60px 0; }
  .route-list { grid-template-columns: 1fr; gap: 12px; }

  /* Destination Hero */
  .destination-hero { min-height: 380px; }
  .destination-hero-content { padding: 140px 24px 48px; }
  .destination-hero h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); }

  /* Highlights */
  .highlights-section { padding: 60px 0; }
  .highlights { grid-template-columns: 1fr; gap: 16px; }

  /* Attractions */
  .attractions-section { padding: 60px 0; }
  .attractions-section h2 { margin-bottom: 28px; }
  .attractions { grid-template-columns: 1fr; gap: 16px; }

  /* Article Header */
  .article-header { padding: 120px 24px 32px; }
  .article-header h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .article-cover { border-radius: var(--radius-lg); }

  /* Article Body */
  .article-body { padding: 0 24px 60px; }
  .article-body h2 { margin: 36px 0 12px; }
  .article-body h3 { margin: 28px 0 10px; }
  .article-body p { font-size: 1rem; }

  /* Related Posts */
  .related-posts-section { padding: 60px 0; }
  .related-posts { grid-template-columns: 1fr; gap: 16px; }
}


/* ============================================
   RESPONSIVE — 480px (small mobile)
   ============================================ */
@media (max-width: 480px) {

  /* Page Hero */
  .page-hero { padding: 100px 20px 48px; }
  .page-hero h1 { font-size: clamp(1.5rem, 8vw, 2rem); }
  .page-hero .hero-mascot { width: 110px; }

  /* Breadcrumb */
  .breadcrumb { padding: 0 20px; font-size: 12px; gap: 6px; }

  /* Info Cards */
  .info-cards { grid-template-columns: 1fr; }

  /* CTA Final */
  .cta-final-section { padding: 48px 20px; }
  .cta-final-text h2 { font-size: 1.4rem; }

  /* Route Hero */
  .route-hero { min-height: 300px; }
  .route-hero-content { padding: 100px 20px 0; }

  /* Price Table: horizontal scroll */
  .price-table-section .section-container { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .price-table { min-width: 540px; }

  /* Company Hero */
  .company-hero { padding: 100px 20px 48px; }
  .company-logo-wrap { width: 100px; height: 100px; padding: 16px; }

  /* Company Stats */
  .company-stats { grid-template-columns: 1fr; }

  /* Destination Hero */
  .destination-hero { min-height: 320px; }
  .destination-hero-content { padding: 120px 20px 40px; }

  /* Article Header */
  .article-header { padding: 100px 20px 24px; }
  .article-header h1 { font-size: 1.5rem; }

  /* Article Body */
  .article-body { padding: 0 20px 48px; }
  .article-body blockquote { padding: 20px; margin: 24px 0; }

  /* Related Posts */
  .post-card-img { height: 150px; }
}
