@font-face {
  font-family: 'Manrope';
  src: local('Manrope');
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: local('Space Grotesk');
  font-display: swap;
}

:root {
  --bg: #080605;
  --bg-soft: #130f0b;
  --surface: rgba(24, 18, 12, 0.78);
  --surface-strong: rgba(10, 8, 6, 0.94);
  --surface-light: rgba(255, 224, 157, 0.08);
  --stroke: rgba(244, 210, 122, 0.16);
  --stroke-strong: rgba(244, 210, 122, 0.34);
  --text: #fffaf0;
  --text-muted: #d5c6a0;
  --text-soft: #f0dfb1;
  --primary: #f4d27a;
  --secondary: #c9962d;
  --accent: #fff1c3;
  --danger: #b75c3b;
  --royal-glow: rgba(244, 210, 122, 0.24);
  --glass-sheen: rgba(255, 245, 214, 0.08);
  --section-fade: rgba(244, 210, 122, 0.1);
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7.5rem;
}

body {
  margin: 0;
  font-family: 'Manrope', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(244, 210, 122, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(152, 106, 34, 0.16), transparent 24%),
    radial-gradient(circle at 50% 120%, rgba(110, 61, 20, 0.2), transparent 34%),
    linear-gradient(180deg, #060505 0%, #0f0b08 48%, #070605 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: rgba(244, 210, 122, 0.3);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

body::before {
  width: 28rem;
  height: 28rem;
  top: -8rem;
  left: -6rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 210, 122, 0.24), transparent 70%);
  filter: blur(12px);
  animation: floatOrb 16s ease-in-out infinite;
}

body::after {
  width: 34rem;
  height: 34rem;
  right: -10rem;
  bottom: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 150, 45, 0.22), transparent 72%);
  filter: blur(20px);
  animation: floatOrb 18s ease-in-out infinite reverse;
}

body::marker {
  color: var(--primary);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 80;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.scroll-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #7a520f 0%, #f4d27a 45%, #fff4c7 75%, #c9962d 100%);
  box-shadow: 0 0 22px rgba(244, 210, 122, 0.4);
  transition: width 0.08s linear;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 120;
  padding: 0.85rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 210, 122, 0.36);
  background: rgba(8, 6, 5, 0.96);
  color: var(--text);
  transform: translateY(-140%);
  transition: transform 0.18s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.utility-bar {
  border-bottom: 1px solid var(--stroke);
  background:
    linear-gradient(90deg, rgba(201, 150, 45, 0.08), rgba(255, 255, 255, 0)),
    rgba(8, 6, 5, 0.72);
  backdrop-filter: blur(18px);
}

.utility-bar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 0.75rem;
}

.utility-copy,
.utility-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.4rem;
  align-items: center;
}

.utility-copy span,
.utility-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.utility-links a:hover,
.footer-link-list a:hover,
.footer-social a:hover,
.nav-dropdown-menu a:hover,
.site-nav a:hover {
  color: var(--primary);
  text-shadow: 0 0 16px rgba(244, 210, 122, 0.18);
}

.social-pill {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(244, 210, 122, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 244, 213, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.social-pill:hover {
  transform: translateY(-3px) scale(1.04);
  border-color: rgba(244, 210, 122, 0.48);
  background: rgba(244, 210, 122, 0.12);
  box-shadow: 0 12px 28px rgba(201, 150, 45, 0.2);
}

.social-pill.is-whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.5);
  background: rgba(37, 211, 102, 0.12);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.18);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
  transition: padding 0.25s ease;
}

body.is-scrolled .site-nav {
  padding: 0.6rem 0;
}

.nav-shell {
  background:
    linear-gradient(180deg, rgba(244, 210, 122, 0.06), rgba(255, 255, 255, 0)),
    rgba(8, 6, 5, 0.82);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.nav-shell::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(244, 210, 122, 0.08), transparent);
  transform: translateX(-100%);
  animation: royalSweep 7s linear infinite;
  pointer-events: none;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1.1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-mark {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 250, 219, 0.92), rgba(244, 210, 122, 0.86) 35%, rgba(135, 89, 19, 0.98) 100%);
  color: #120d08;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 14px 28px rgba(201, 150, 45, 0.24),
    inset 0 1px 10px rgba(255, 249, 224, 0.22);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 14px;
  border: 1px solid rgba(255, 245, 214, 0.25);
}

.brand-copy strong,
.brand-copy span {
  display: block;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.92rem;
  color: var(--text-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy span {
  font-family: 'Space Grotesk', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.05rem;
}

.nav-toggle {
  display: none;
  border: 0;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 16px;
}

.nav-toggle i {
  font-size: 1.35rem;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}

.nav-link-item,
.nav-dropdown-toggle {
  color: var(--text-muted);
  font-weight: 600;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  position: relative;
  overflow: hidden;
}

.nav-link-item:hover,
.nav-dropdown-toggle:hover,
.nav-link-item.is-active,
.nav-dropdown.is-active .nav-dropdown-toggle {
  color: var(--text);
  background: linear-gradient(180deg, rgba(244, 210, 122, 0.12), rgba(255, 255, 255, 0.02));
  border-color: var(--stroke-strong);
  box-shadow: inset 0 1px 0 rgba(255, 246, 219, 0.08);
}

.nav-link-item::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.45rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transform: scaleX(0.15);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-link-item:hover::after,
.nav-link-item.is-active::after,
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.is-active .nav-dropdown-toggle::after,
.nav-dropdown.open .nav-dropdown-toggle::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 0;
  min-width: 19rem;
  padding: 0.7rem;
  border-radius: 24px;
  border: 1px solid var(--stroke);
  background:
    linear-gradient(180deg, rgba(244, 210, 122, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(8, 6, 5, 0.96);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  color: var(--text-muted);
  font-weight: 600;
}

.nav-dropdown-menu a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.nav-cta {
  margin-left: 0.3rem;
}

.btn-primary-mibi,
.btn-secondary-mibi,
.btn-link-mibi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.2rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  will-change: transform;
}

.btn-primary-mibi {
  color: #120d08;
  background: linear-gradient(135deg, #fff0bf 0%, var(--primary) 42%, var(--secondary) 100%);
  box-shadow:
    0 18px 35px rgba(201, 150, 45, 0.28),
    inset 0 1px 10px rgba(255, 248, 226, 0.22);
  position: relative;
  overflow: hidden;
}

.btn-secondary-mibi {
  color: var(--text);
  border: 1px solid rgba(244, 210, 122, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(244, 210, 122, 0.04));
}

.btn-link-mibi {
  color: var(--secondary);
  padding-left: 0;
  padding-right: 0;
  min-height: auto;
}

.btn-primary-mibi:hover,
.btn-secondary-mibi:hover,
.btn-link-mibi:hover {
  transform: translateY(-3px);
}

.btn-primary-mibi .bi,
.btn-secondary-mibi .bi,
.btn-link-mibi .bi {
  transition: transform 0.18s ease;
}

.btn-primary-mibi:hover .bi,
.btn-secondary-mibi:hover .bi,
.btn-link-mibi:hover .bi {
  transform: translateX(4px);
}

.btn-primary-mibi::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 229, 0.55), transparent);
  transform: skewX(-24deg);
  animation: buttonShine 4.4s ease-in-out infinite;
}

main {
  padding-bottom: 4rem;
  position: relative;
}

main::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 12%, rgba(0, 0, 0, 0.15) 80%, transparent);
  opacity: 0.22;
}

.hero-section,
.page-hero {
  padding: 4rem 0 1.4rem;
}

.hero-shell,
.section-shell,
.cta-shell,
.footer-shell {
  position: relative;
}

.hero-shell::before,
.section-shell::before,
.cta-shell::before {
  content: "";
  position: absolute;
  inset: -1rem 8% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 210, 122, 0.34), transparent);
  opacity: 0.55;
  pointer-events: none;
}

.hero-shell::after {
  content: "";
  position: absolute;
  top: -3rem;
  right: 0;
  width: clamp(13rem, 22vw, 18rem);
  height: clamp(13rem, 22vw, 18rem);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 244, 208, 0.12), rgba(244, 210, 122, 0.04) 45%, transparent 70%);
  pointer-events: none;
  filter: blur(6px);
}

.hero-panel,
.glass-card,
.feature-card,
.story-card,
.footer-card,
.timeline-card,
.gallery-card,
.price-card,
.resource-card,
.contact-route,
.faq-card,
.badge-cloud,
.highlight-panel {
  border: 1px solid var(--stroke);
  background:
    linear-gradient(180deg, rgba(255, 248, 229, 0.06), rgba(255, 255, 255, 0.015)),
    radial-gradient(circle at top left, rgba(244, 210, 122, 0.07), transparent 55%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel {
  overflow: hidden;
  padding: 1.4rem;
  position: relative;
}

.hero-panel::before,
.feature-card::before,
.story-card::before,
.service-card::before,
.resource-card::before,
.price-card::before,
.highlight-panel::before,
.timeline-card::before,
.gallery-card::before,
.contact-route::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 244, 214, 0.04);
  background: linear-gradient(120deg, transparent, rgba(244, 210, 122, 0.05), transparent);
  transform: translateX(-110%);
  animation: panelSweep 9s ease-in-out infinite;
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 210, 122, 0.28);
  color: var(--primary);
  background: rgba(244, 210, 122, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 247, 221, 0.08);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.77rem;
}

.display-title,
.page-title,
h2,
h3 {
  font-family: 'Space Grotesk', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.display-title {
  font-size: clamp(2.2rem, 4.8vw, 4.35rem);
  margin: 1rem 0 1.2rem;
  text-wrap: balance;
}

.page-title {
  font-size: clamp(2.35rem, 4.8vw, 4.2rem);
  margin: 0.9rem 0 1rem;
  text-wrap: balance;
}

.gradient-text {
  background: linear-gradient(135deg, #fff9e4 12%, #f4d27a 52%, #a87118 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead-text,
.section-copy,
.card-copy,
.copy-list li,
.timeline-list li,
.faq-card p,
.page-hero p {
  color: var(--text-muted);
  line-height: 1.8;
}

.lead-text {
  font-size: 1.08rem;
  max-width: 50rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.metric-grid,
.feature-grid,
.story-grid,
.service-grid,
.route-grid,
.stats-grid,
.resource-grid,
.benefit-grid,
.faq-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

.metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.6rem;
}

.metric-card,
.stat-card {
  padding: 1.15rem 1.2rem;
  border-radius: 24px;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(244, 210, 122, 0.04));
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  position: relative;
  overflow: hidden;
}

.metric-card::after,
.stat-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(244, 210, 122, 0.45), transparent);
  transform: translateX(-100%);
  animation: royalSweep 8s linear infinite;
}

.metric-card:hover,
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 210, 122, 0.32);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.metric-card strong,
.stat-card strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}

.metric-card span,
.stat-card span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.hero-visual,
.page-hero-visual {
  position: relative;
  min-height: 100%;
}

.visual-stack {
  display: grid;
  gap: 1rem;
}

.visual-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 23rem;
  border: 1px solid var(--stroke);
  box-shadow: inset 0 0 0 1px rgba(255, 241, 195, 0.05);
  transition: transform 0.28s ease;
}

.visual-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.02), rgba(7, 6, 5, 0.22)),
    radial-gradient(circle at top right, rgba(255, 244, 208, 0.12), transparent 34%);
  pointer-events: none;
}

.visual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.8s ease, filter 0.8s ease;
  filter: saturate(1.02) contrast(1.02);
}

.hero-panel:hover .visual-image img,
.split-visual-card:hover img,
.gallery-card:hover img {
  transform: scale(1.07);
  filter: saturate(1.1) contrast(1.06);
}

.floating-panel {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: min(18rem, 82%);
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(244, 210, 122, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(8, 6, 5, 0.8);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.35);
  animation: gentleFloat 5.6s ease-in-out infinite;
}

.floating-panel strong {
  display: block;
  margin-bottom: 0.35rem;
}

.floating-panel p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section-block {
  padding: 1.8rem 0;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 1px 920px;
}

.section-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(88%, 1100px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(244, 210, 122, 0.16), transparent);
  opacity: 0.85;
}

.section-block::after {
  content: "";
  position: absolute;
  top: 1.4rem;
  left: 50%;
  width: min(74%, 920px);
  height: 10rem;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(244, 210, 122, 0.1), transparent 72%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.section-block:first-of-type::before {
  display: none;
}

.section-block.is-in-view .section-shell,
.section-block.is-in-view .content-split,
.section-block.is-in-view .split-panel,
.section-block.is-in-view .cta-shell {
  filter: drop-shadow(0 12px 34px rgba(0, 0, 0, 0.18));
}

.section-block.is-in-view::after {
  opacity: 1;
}

.section-header {
  max-width: 47rem;
  margin-bottom: 1.5rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin: 0.8rem 0 0.9rem;
  display: inline-block;
  position: relative;
  padding-bottom: 0.75rem;
}

.section-header h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(5rem, 18vw, 8rem);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--secondary), var(--primary), transparent);
  box-shadow: 0 0 24px rgba(244, 210, 122, 0.16);
  transform-origin: left center;
  transform: scaleX(0.68);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.section-block.is-in-view .section-header h2::after {
  transform: scaleX(1);
  box-shadow: 0 0 28px rgba(244, 210, 122, 0.24);
}

.section-kicker {
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 800;
}

.feature-card,
.story-card,
.resource-card,
.contact-route,
.faq-card,
.gallery-card,
.price-card,
.highlight-panel {
  padding: 1.35rem;
  height: 100%;
  position: relative;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  will-change: transform, box-shadow;
}

.gallery-card {
  padding: 0.55rem;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  min-height: 18rem;
  object-fit: cover;
  border-radius: 24px;
}

.feature-card i,
.story-card i,
.resource-card i,
.contact-route i,
.price-card i {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 1rem;
  color: #120d08;
  background: linear-gradient(135deg, #fff0bf, var(--primary), var(--secondary));
  box-shadow: 0 12px 30px rgba(201, 150, 45, 0.22);
}

.feature-card h3,
.story-card h3,
.resource-card h3,
.price-card h3,
.contact-route h3,
.faq-card h3 {
  font-size: 1.35rem;
  margin: 0 0 0.7rem;
}

.service-grid,
.feature-grid,
.story-grid,
.resource-grid,
.benefit-grid,
.gallery-grid,
.faq-grid,
.route-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  padding: 1.45rem;
  height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background:
    linear-gradient(180deg, rgba(255, 248, 229, 0.07), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, rgba(244, 210, 122, 0.14), transparent 42%);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 210, 122, 0.18), transparent 70%);
  pointer-events: none;
}

.service-card:nth-child(2n) {
  background:
    linear-gradient(180deg, rgba(255, 248, 229, 0.05), rgba(255, 255, 255, 0.015)),
    radial-gradient(circle at bottom left, rgba(201, 150, 45, 0.15), transparent 42%);
}

.service-card:nth-child(3n) {
  background:
    linear-gradient(180deg, rgba(255, 248, 229, 0.06), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top center, rgba(255, 241, 195, 0.1), transparent 40%);
}

.service-card:hover,
.feature-card:hover,
.story-card:hover,
.resource-card:hover,
.contact-route:hover,
.price-card:hover,
.gallery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 210, 122, 0.38);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(244, 210, 122, 0.06);
}

.service-card h3 {
  font-size: 1.38rem;
  margin: 0.8rem 0;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid var(--stroke);
}

.copy-list,
.timeline-list,
.plain-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.copy-list li,
.timeline-list li,
.plain-list li {
  position: relative;
  padding-left: 1.45rem;
  margin-bottom: 0.8rem;
}

.copy-list li::before,
.timeline-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.highlight-panel {
  padding: 1.7rem;
}

.badge-cloud {
  padding: 1rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  color: var(--text-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(244, 210, 122, 0.045));
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 246, 219, 0.05);
}

.split-panel,
.content-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  align-items: stretch;
}

.split-copy,
.split-visual-card {
  padding: 1.4rem;
}

.split-visual-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(244, 210, 122, 0.04));
  overflow: hidden;
  position: relative;
}

.split-visual-card img {
  width: 100%;
  height: 100%;
  min-height: 20rem;
  object-fit: cover;
  border-radius: 24px;
}

.timeline-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  position: relative;
}

.timeline-layout::before {
  content: "";
  position: absolute;
  top: 1.3rem;
  left: 4%;
  right: 4%;
  height: 1px;
  background: linear-gradient(90deg, rgba(244, 210, 122, 0.08), rgba(244, 210, 122, 0.34), rgba(244, 210, 122, 0.08));
  pointer-events: none;
}

.timeline-card {
  padding: 1.3rem;
}

.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 0.9rem;
  border-radius: 14px;
  font-family: 'Space Grotesk', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: #120d08;
  background: linear-gradient(135deg, var(--secondary), #ffe39f, var(--primary));
  box-shadow: 0 10px 24px rgba(201, 150, 45, 0.22);
}

.timeline-card h3 {
  font-size: 1.2rem;
  margin: 0 0 0.7rem;
}

.price-card .price-tag {
  display: block;
  font-size: 2rem;
  font-family: 'Space Grotesk', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  margin-bottom: 0.45rem;
}

.price-card .plan-note {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.accent-border {
  border-color: rgba(244, 210, 122, 0.34);
  box-shadow: 0 26px 70px rgba(201, 150, 45, 0.18);
}

.faq-card details {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.faq-card details:first-of-type {
  border-top: 0;
  padding-top: 0.2rem;
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: var(--text-soft);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  color: var(--primary);
}

.faq-card details[open] summary::after {
  content: "-";
}

.faq-card details[open] {
  background: linear-gradient(180deg, rgba(244, 210, 122, 0.06), rgba(255, 255, 255, 0.015));
  border-top-color: rgba(244, 210, 122, 0.16);
  border-radius: 16px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.faq-card p {
  margin: 0.8rem 0 0;
}

.cta-band {
  padding: 1.7rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(244, 210, 122, 0.24);
  background:
    linear-gradient(135deg, rgba(244, 210, 122, 0.18), rgba(108, 71, 20, 0.16)),
    rgba(255, 255, 255, 0.025);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 241, 195, 0.14), transparent 34%);
  pointer-events: none;
}

.cta-band h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  margin: 0 0 0.75rem;
}

.cta-band p {
  color: var(--text-soft);
  margin-bottom: 0;
}

.site-footer {
  padding: 1.5rem 0 3rem;
}

.footer-card {
  padding: 1.6rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-title {
  font-family: 'Space Grotesk', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
}

img[loading="lazy"] {
  content-visibility: auto;
}

.footer-copy,
.footer-link-list a,
.footer-contact span {
  color: var(--text-muted);
}

.footer-link-list,
.footer-social,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-link-list li,
.footer-contact li {
  margin-bottom: 0.7rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px) scale(0.992);
  transition:
    opacity 0.44s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.44s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.44s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  filter: blur(1px);
  will-change: transform, opacity;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

[data-reveal="left"] {
  transform: translateX(-22px) scale(0.992);
}

[data-reveal="right"] {
  transform: translateX(22px) scale(0.992);
}

[data-reveal="zoom"] {
  transform: translateY(12px) scale(0.968);
}

.has-tilt {
  transform-style: preserve-3d;
  will-change: transform;
}

.whatsapp-float {
  position: fixed;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 60;
  width: 3.9rem;
  height: 3.9rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #118447);
  box-shadow:
    0 22px 38px rgba(17, 132, 71, 0.34),
    0 0 0 10px rgba(37, 211, 102, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseRing 2.8s ease-in-out infinite;
}

.whatsapp-float i {
  font-size: 1.5rem;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 26px 44px rgba(17, 132, 71, 0.38),
    0 0 0 12px rgba(37, 211, 102, 0.12);
}

.back-to-top {
  position: fixed;
  right: 1.35rem;
  bottom: 6.1rem;
  z-index: 59;
  width: 3.35rem;
  height: 3.35rem;
  border: 1px solid rgba(244, 210, 122, 0.28);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 248, 229, 0.08), rgba(244, 210, 122, 0.08)),
    rgba(8, 6, 5, 0.88);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.94);
  transition: transform 0.18s ease, opacity 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  border-color: rgba(244, 210, 122, 0.45);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.42);
}

.mobile-action-bar {
  display: none;
}

.mobile-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3.15rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid rgba(244, 210, 122, 0.24);
  background: rgba(255, 255, 255, 0.04);
}

.mobile-action.is-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #25d366, #118447);
  border-color: rgba(37, 211, 102, 0.3);
}

.mobile-action.is-join {
  color: #120d08;
  background: linear-gradient(135deg, #fff0bf 0%, var(--primary) 42%, var(--secondary) 100%);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 0;
  box-shadow:
    0 0 0 2px rgba(8, 6, 5, 0.9),
    0 0 0 4px rgba(244, 210, 122, 0.42);
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 22px, 0);
  }
}

@keyframes royalSweep {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(140%);
  }
}

@keyframes panelSweep {
  0%,
  70% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(130%);
  }
}

@keyframes buttonShine {
  0%,
  76% {
    left: -120%;
  }
  100% {
    left: 155%;
  }
}

@keyframes pulseRing {
  0%,
  100% {
    box-shadow:
      0 22px 38px rgba(17, 132, 71, 0.34),
      0 0 0 10px rgba(37, 211, 102, 0.08);
  }
  50% {
    box-shadow:
      0 26px 46px rgba(17, 132, 71, 0.4),
      0 0 0 16px rgba(37, 211, 102, 0.04);
  }
}

@keyframes gentleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@media (max-width: 1199.98px) {
  .nav-shell {
    border-radius: 30px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 28px;
    border: 1px solid var(--stroke);
    background: rgba(8, 17, 31, 0.96);
    backdrop-filter: blur(24px);
    box-shadow: var(--shadow);
  }

  body.nav-open .nav-panel {
    display: flex;
  }

  .nav-inner {
    position: relative;
  }

  .nav-link-item,
  .nav-dropdown-toggle,
  .nav-cta {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 100%;
    margin-top: 0.6rem;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .metric-grid,
  .timeline-layout,
  .service-grid,
  .feature-grid,
  .story-grid,
  .resource-grid,
  .benefit-grid,
  .gallery-grid,
  .faq-grid,
  .route-grid,
  .split-panel,
  .content-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-layout::before {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .utility-bar .container,
  .utility-copy,
  .utility-links,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-section,
  .page-hero {
    padding-top: 1.8rem;
  }

  .metric-grid,
  .timeline-layout,
  .service-grid,
  .feature-grid,
  .story-grid,
  .resource-grid,
  .benefit-grid,
  .gallery-grid,
  .faq-grid,
  .route-grid,
  .split-panel,
  .content-split {
    grid-template-columns: 1fr;
  }

  .section-block {
    padding: 1.35rem 0;
  }

  .nav-inner {
    padding: 0.9rem;
  }

  .brand-copy strong {
    font-size: 0.8rem;
  }

  .brand-copy span {
    font-size: 0.96rem;
  }

  .display-title {
    font-size: clamp(1.95rem, 8.2vw, 3.05rem);
  }

  .page-title {
    font-size: clamp(2rem, 10vw, 3.4rem);
  }

  .service-card,
  .feature-card,
  .story-card,
  .resource-card,
  .contact-route,
  .faq-card,
  .gallery-card,
  .price-card,
  .highlight-panel,
  .cta-band,
  .timeline-card,
  .hero-panel,
  .footer-card {
    border-radius: 24px;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 5.6rem;
    width: 3.4rem;
    height: 3.4rem;
  }

  .back-to-top {
    right: 1rem;
    bottom: 9.5rem;
    width: 3.1rem;
    height: 3.1rem;
  }

  .mobile-action-bar {
    position: fixed;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
    z-index: 58;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    padding: 0.6rem;
    border-radius: 26px;
    border: 1px solid rgba(244, 210, 122, 0.2);
    background:
      linear-gradient(180deg, rgba(255, 248, 229, 0.05), rgba(255, 255, 255, 0.015)),
      rgba(8, 6, 5, 0.88);
    backdrop-filter: blur(20px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.34);
  }

  .mobile-action {
    min-height: 3rem;
    padding: 0.8rem 0.65rem;
    font-size: 0.85rem;
    flex-direction: column;
    gap: 0.18rem;
  }

  .mobile-action i {
    font-size: 1rem;
  }

  main {
    padding-bottom: 7.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
