:root {
  --bg: #eff4fb;
  --bg-deep: #e7eefb;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --line: rgba(16, 36, 80, 0.09);
  --ink: #0b1736;
  --muted: #5c6885;
  --blue: #0b2f8f;
  --blue-strong: #143ab8;
  --purple: #6d3df5;
  --indigo: #4454ff;
  --success: #0f766e;
  --danger: #b91c1c;
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-lg: 0 36px 72px rgba(10, 24, 58, 0.18);
  --shadow-md: 0 18px 40px rgba(10, 24, 58, 0.12);
  --shadow-sm: 0 10px 24px rgba(10, 24, 58, 0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(120, 170, 255, 0.16), transparent 32%),
    radial-gradient(circle at 92% 12%, rgba(109, 61, 245, 0.12), transparent 24%),
    linear-gradient(180deg, #f7f9fe 0%, var(--bg) 38%, #f7f9fe 100%);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.container {
  width: min(100% - 32px, 1240px);
  margin-inline: auto;
}
.eyebrow,
.hero-kicker,
.white.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow {
  background: rgba(11, 47, 143, 0.08);
  color: var(--blue);
}
.white.eyebrow,
.hero-kicker {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}
.section {
  position: relative;
  z-index: 2;
  padding: 92px 0;
}
.section.compact { padding: 76px 0; }
.section-intro { max-width: 760px; margin-bottom: 30px; }
.section-title {
  margin: 16px 0 14px;
  font-family: 'Rajdhani', 'Inter', sans-serif;
  font-size: clamp(2.6rem, 4vw, 4.3rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.section-title.small-title { font-size: clamp(2.2rem, 3vw, 3.2rem); }
.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}
.topbar {
  position: relative;
  z-index: 84;
  padding: 8px 0 0;
}
.topbar-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 42px;
}
.topbar-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 47, 143, 0.07);
  box-shadow: 0 12px 28px rgba(10, 24, 58, 0.08);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
}
.topbar-whatsapp::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.16);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 95;
  padding: 10px 0 0;
}
.site-header .container,
.topbar .container {
  width: min(100% - 28px, 1380px);
}
.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 82px;
  padding: 0 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(11, 47, 143, 0.08);
  box-shadow: 0 18px 40px rgba(10, 24, 58, 0.12);
  backdrop-filter: blur(18px);
}
.site-header.is-scrolled .header-shell {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 44px rgba(10, 24, 58, 0.16);
}
.header-shell > * { min-width: 0; }
.brand-mark {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.brand-mark img {
  width: auto;
  max-width: none;
  height: 52px;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  flex-wrap: nowrap;
  justify-self: center;
}

.nav-link {
  padding: 11px 14px;
  border-radius: 14px;
  color: #51607e;
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--ink);
  background: rgba(11, 47, 143, 0.08);
  transform: translateY(-1px);
}
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 10px;
}
.header-actions .button.small {
  padding-inline: 18px;
  white-space: nowrap;
}
.mobile-nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(11, 47, 143, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
}
.mobile-drawer {
  display: none;
  margin-top: 12px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.mobile-drawer a { display: block; }
.mobile-drawer[hidden] { display: none !important; }
.mobile-drawer .nav-link { padding: 14px 16px; margin-bottom: 6px; }
.mobile-drawer .mobile-cta {
  margin-top: 8px;
  width: 100%;
}
body.drawer-open .mobile-drawer { display: block; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 18px 28px rgba(28, 63, 182, 0.24);
}
.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(11, 47, 143, 0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}
.button.ghost {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}
.button.small { padding: 12px 16px; border-radius: 14px; font-size: 0.94rem; }
.hero {
  position: relative;
  min-height: 94vh;
  margin-top: -118px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  transition: opacity 0.75s ease, visibility 0.75s ease, transform 8s ease;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg, rgba(6, 17, 44, 0.84) 0%, rgba(9, 28, 80, 0.68) 42%, rgba(55, 40, 120, 0.38) 100%),
    linear-gradient(180deg, rgba(6,17,44,0.2), rgba(6,17,44,0.74));
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.78fr);
  gap: 46px;
  align-items: center;
  width: 100%;
  padding: 194px 0 192px;
}
.hero-copy { max-width: 780px; }
.hero-title,
.page-hero h1,
.footer-card h3,
.footer-card h4,
.area-card h3,
.feature-card h3,
.step-card h3,
.hero-side-card h3,
.result-name,
.week-number,
.search-card h2,
.legal-card h2 {
  font-family: 'Rajdhani', 'Inter', sans-serif;
}
.hero-title {
  margin: 18px 0;
  font-size: clamp(3rem, 6vw, 6.3rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: white;
  max-width: 13ch;
}
.hero-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.9vw, 1.26rem);
  line-height: 1.7;
  max-width: 720px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-stat {
  min-width: 164px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}
.hero-stat span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-stat strong {
  display: block;
  margin-top: 7px;
  color: white;
  font-size: 0.95rem;
  line-height: 1.35;
}
.hero-side-card {
  width: min(100%, 382px);
  justify-self: end;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  color: white;
}
.hero-side-card h3 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 0.95;
}
.hero-side-card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}
.pill-row,
.footer-tags,
.info-strip,
.cycle-meta,
.floating-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill-chip,
.pill,
.footer-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
}
.pill-chip { background: rgba(255, 255, 255, 0.12); color: white; }
.pill,
.footer-tag {
  background: rgba(11, 47, 143, 0.08);
  color: var(--blue);
}
.pill-strong {
  background: linear-gradient(135deg, rgba(11,47,143,0.11), rgba(109,61,245,0.14));
  color: var(--ink);
}
.hero-arrow,
.hero-dot {
  position: absolute;
  z-index: 4;
  border: 0;
  cursor: pointer;
}
.hero-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  backdrop-filter: blur(10px);
  font-size: 2rem;
}
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 118px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}
.hero-dot {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}
.hero-dot.active { background: white; }
.floating-wrap {
  position: relative;
  z-index: 5;
  margin-top: -48px;
}
.floating-panel {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 24px;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}
.floating-copy {
  flex: 1 1 460px;
}
.floating-copy h2 {
  margin: 14px 0 12px;
  font-family: 'Rajdhani', 'Inter', sans-serif;
  font-size: clamp(2.3rem, 3.8vw, 3.5rem);
  line-height: 0.94;
}
.floating-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.floating-pills { flex: 1 1 280px; }
.floating-actions { flex: 0 0 auto; }
.after-hero { padding-top: 20px; }
.grid-3,
.grid-2,
.footer-grid,
.result-meta-grid,
.process-layout,
.search-form,
.search-shell,
.legal-grid,
.week-grid {
  display: grid;
  gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2,
.process-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.week-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.search-shell { gap: 24px; }
.area-card,
.feature-card,
.visual-card,
.step-card,
.search-card,
.callout-shell,
.cycle-strip,
.info-strip,
.result-item,
.legal-card,
.guide-panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}
.area-card,
.feature-card,
.step-card,
.result-item,
.legal-card { padding: 28px; }
.area-card { display: block; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.area-card:hover,
.week-card:hover,
.feature-card:hover { transform: translateY(-5px); }
.area-card::after,
.feature-card::after,
.legal-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(109, 61, 245, 0.14), transparent 72%);
  transform: translate(22%, -22%);
  pointer-events: none;
}
.card-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(11,47,143,0.1), rgba(109,61,245,0.14));
  margin-bottom: 18px;
}
.card-icon img { width: 34px; height: 34px; }
.area-card h3,
.feature-card h3,
.step-card h3 { margin: 0 0 10px; font-size: 2rem; line-height: 0.96; }
.area-card p,
.feature-card p,
.step-card p,
.footer-card p,
.legal-prose p,
.search-card p,
.result-item p,
.week-label,
.page-hero p { color: var(--muted); line-height: 1.75; }
.card-foot,
.area-actions-row,
.search-header,
.result-item-header,
.callout-shell,
.compact-align {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.card-arrow { font-weight: 800; }
.accent-blue .tag { background: rgba(11, 47, 143, 0.08); color: var(--blue); }
.accent-purple .tag { background: rgba(109, 61, 245, 0.1); color: var(--purple); }
.accent-indigo .tag { background: rgba(68, 84, 255, 0.1); color: var(--indigo); }
.visual-card img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}
.process-stack { display: grid; gap: 20px; align-content: start; }
.process-steps { display: grid; gap: 16px; }
.step-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: white;
  font-weight: 900;
  margin-bottom: 14px;
}
.callout-shell,
.guide-panel,
.cycle-strip { padding: 30px; }
.callout-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 204px 0 90px;
  color: white;
}
.page-hero::before,
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
}
.page-hero::before {
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}
.page-hero::after {
  background:
    linear-gradient(120deg, rgba(6,17,44,0.86) 0%, rgba(9,28,80,0.72) 46%, rgba(55,40,120,0.42) 100%),
    linear-gradient(180deg, rgba(6,17,44,0.2), rgba(6,17,44,0.72));
}
.page-hero.is-process::before,
.page-hero.is-simulacros::before { background-image: url('../img/hero-process.jpg'); }
.page-hero.is-campus::before { background-image: url('../img/hero-campus.jpg'); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  margin: 16px 0 0;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}
.page-hero p {
  margin: 18px 0 0;
  max-width: 820px;
  color: rgba(255, 255, 255, 0.82);
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}
.search-card { padding: 30px; }
.search-form {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}
.search-field { display: grid; gap: 10px; }
.search-field label {
  font-weight: 800;
  color: var(--muted);
}
.search-field input {
  height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(11, 47, 143, 0.12);
  background: linear-gradient(180deg, #ffffff, #f7faff);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.78);
}
.search-field input:focus {
  outline: none;
  border-color: rgba(11, 47, 143, 0.46);
  box-shadow: 0 0 0 4px rgba(20, 58, 184, 0.12);
}
.search-button { min-width: 190px; height: 58px; }
.search-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(11, 47, 143, 0.08);
  color: var(--blue);
  font-weight: 800;
}
.result-list { display: grid; gap: 18px; }
.result-item-header { align-items: flex-start; }
.result-name { font-size: 1.24rem; font-weight: 900; }
.result-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.result-meta-cell {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(11, 47, 143, 0.05);
  border: 1px solid rgba(11, 47, 143, 0.08);
}
.result-meta-cell span {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.result-meta-cell strong { display: block; margin-top: 8px; }
.empty-state {
  padding: 34px;
  border-radius: 26px;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px dashed rgba(11, 47, 143, 0.16);
}
.empty-state h3 {
  margin: 0 0 8px;
  font-family: 'Rajdhani', 'Inter', sans-serif;
  font-size: 2rem;
}
.cycle-strip h2 { margin-top: 14px; }
.week-card {
  display: block;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.week-card.is-published {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,248,255,0.98));
  border-color: rgba(11, 47, 143, 0.16);
}
.week-card.is-pending { opacity: 0.88; }
.week-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.week-card.is-published .week-status {
  background: rgba(15, 118, 110, 0.12);
  color: var(--success);
}
.week-card.is-pending .week-status {
  background: rgba(239, 68, 68, 0.12);
  color: var(--danger);
}
.week-number {
  display: block;
  margin: 18px 0 10px;
  font-size: 2rem;
  line-height: 0.95;
}
.week-label { display: block; font-weight: 700; }
.info-strip {
  padding: 22px;
  justify-content: center;
}
.site-footer {
  position: relative;
  margin-top: 44px;
  padding: 76px 0 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(109, 61, 245, 0.28), transparent 24%),
    radial-gradient(circle at bottom right, rgba(20, 58, 184, 0.24), transparent 28%),
    linear-gradient(135deg, #091b48, #102f7d 52%, #3f35ab 100%);
  color: white;
}
.footer-grid {
  grid-template-columns: 1.2fr 0.9fr 1fr;
}
.footer-card {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}
.footer-card h3,
.footer-card h4 {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 0.96;
}
.footer-card h4 { font-size: 1.46rem; }
.footer-card p,
.footer-note {
  color: rgba(255, 255, 255, 0.76);
}
.site-footer .footer-tag {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}
.footer-logo {
  width: min(100%, 220px);
  margin-bottom: 18px;
}
.footer-nav,
.legal-links {
  display: grid;
  gap: 10px;
}
.footer-nav a,
.legal-links a {
  color: white;
  opacity: 0.86;
}
.footer-phone {
  margin-top: 16px;
  font-size: 1.1rem;
  font-weight: 800;
}
.footer-note { margin-top: 12px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}
.legal-card { padding: 32px; }
.legal-prose h2,
.legal-prose h3 {
  font-family: 'Rajdhani', 'Inter', sans-serif;
  line-height: 0.95;
}
.legal-prose h2 { margin: 0 0 20px; font-size: 2.2rem; }
.legal-prose h3 { margin: 24px 0 8px; font-size: 1.5rem; }
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.from-left { transform: translateX(-24px); }
.reveal.from-right { transform: translateX(24px); }
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1180px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side-card { justify-self: start; width: min(100%, 460px); }
  .week-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1120px) {
  .nav-links { display: none; }
  .mobile-nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .hero { min-height: 90vh; margin-top: -112px; }
  .hero-grid { padding: 188px 0 178px; }
  .grid-3,
  .grid-2,
  .process-layout,
  .footer-grid,
  .result-meta-grid,
  .week-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .search-form { grid-template-columns: 1fr; }
  .search-button { width: 100%; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 20px, 1240px); }
  .topbar-row { justify-content: stretch; }
  .topbar-whatsapp { width: 100%; justify-content: center; }
  .header-shell {
    grid-template-columns: auto auto;
    padding: 0 14px;
    min-height: 74px;
    gap: 10px;
  }
  .brand-mark img { height: 42px; }
  .header-actions .button.small { display: none; }
  .hero-arrow { display: none; }
  .hero-grid { padding: 176px 0 154px; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 4.6rem); }
  .hero-side-card { width: 100%; }
  .hero-dots { bottom: 96px; }
  .floating-wrap { margin-top: -20px; }
  .floating-panel { width: calc(100vw - 20px); padding: 22px; }
  .grid-3,
  .grid-2,
  .process-layout,
  .footer-grid,
  .result-meta-grid,
  .week-grid { grid-template-columns: 1fr; }
  .section,
  .section.compact { padding: 64px 0; }
  .page-hero { padding: 180px 0 74px; }
  .page-hero h1 { font-size: clamp(2.8rem, 11vw, 4.2rem); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
