@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;500;600;700&family=Sora:wght@600;700;800&display=swap');

:root {
  --bg: #f3f7f6;
  --surface: #ffffff;
  --surface-soft: #f7faf9;
  --text: #0f2f2f;
  --text-strong: #0b2226;
  --muted: #4f6668;
  --brand: #0e6f77;
  --brand-dark: #0b555c;
  --accent: #d79c2f;
  --accent-dark: #b78322;
  --line: #d6e3e0;
  --line-strong: #b7cdc8;
  --ok: #1f6f46;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow-sm: 0 6px 20px rgba(9, 34, 39, 0.08);
  --shadow: 0 14px 34px rgba(9, 34, 39, 0.1);
  --shadow-lg: 0 22px 48px rgba(8, 30, 36, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; border-radius: var(--radius-sm); }

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', 'Avenir Next', sans-serif;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}

p {
  color: var(--muted);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(14, 111, 119, 0.28);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 999;
  padding: .55rem .78rem;
  border-radius: 10px;
  background: #0b2d34;
  color: #ffffff;
  font-weight: 700;
  border: 1px solid #8bb2b7;
  transition: top .2s ease;
}

.skip-link:focus-visible {
  top: 10px;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section-tight {
  padding-top: 0;
}

.section-title {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin: 0 0 .6rem;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--muted);
  margin-top: 0;
  margin-bottom: 2rem;
  max-width: 62ch;
}

.subtitle-no-margin {
  margin-bottom: 0;
}

.topbar {
  background: linear-gradient(110deg, #08262c, #0d3f48);
  color: #d9edf0;
  font-size: .9rem;
  padding: .5rem 0;
}

.topbar-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 251, 250, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.brand {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: .1px;
  color: #0d2e34;
}

.brand span { color: var(--brand); }

.nav-links {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  font-weight: 700;
  color: #244347;
}

.nav-links a {
  position: relative;
  padding: .3rem .2rem;
}

.nav-link-active {
  color: var(--brand);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .72rem 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.hero-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(120deg, var(--brand), #128691);
  box-shadow: 0 10px 20px rgba(14, 111, 119, .2);
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(120deg, #0d6570, #0f7781);
  box-shadow: 0 12px 24px rgba(14, 111, 119, .28);
}

.btn-outline {
  border-color: var(--line-strong);
  background: var(--surface);
  color: #173e44;
}

.btn-outline:hover {
  border-color: var(--brand);
  background: #eef8f7;
  color: var(--brand);
}

.menu-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  width: 46px;
  height: 46px;
  padding: 0;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform .22s cubic-bezier(.2, .8, .2, 1), box-shadow .22s ease, background-color .22s ease, border-color .22s ease;
}

.menu-toggle:hover {
  box-shadow: 0 10px 24px rgba(9, 34, 39, 0.12);
}

.menu-toggle:active {
  transform: scale(.96);
}

.menu-toggle.is-open {
  background: linear-gradient(135deg, #edf8f6, #ffffff);
  border-color: rgba(14, 111, 119, .45);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.burger-box {
  position: relative;
  width: 18px;
  height: 14px;
  display: inline-block;
}

.burger-line {
  display: block;
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #164149;
  border-radius: 99px;
  transform-origin: center;
  transition:
    transform .34s cubic-bezier(.2, .9, .2, 1),
    opacity .18s ease,
    top .34s cubic-bezier(.2, .9, .2, 1),
    width .34s cubic-bezier(.2, .9, .2, 1),
    background-color .22s ease;
  will-change: transform, opacity, top, width;
}

.burger-line:nth-child(1) {
  top: 0;
}

.burger-line:nth-child(2) {
  top: 6px;
}

.burger-line:nth-child(3) {
  top: 12px;
}

.menu-toggle.is-open .burger-line:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.menu-toggle.is-open .burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(.15);
}

.menu-toggle.is-open .burger-line:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.hero {
  background:
    linear-gradient(to right, rgba(6, 31, 37, .9), rgba(10, 61, 70, .55)),
    url('https://images.unsplash.com/photo-1622308644420-b20142dc993c?auto=format&fit=crop&w=1900&q=80') center/cover no-repeat;
  color: #fff;
  padding: 6.6rem 0 4.3rem;
}

.trust-strip-wrap {
  margin-top: -1.35rem;
  position: relative;
  z-index: 2;
}

.trust-strip {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  padding: .95rem 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .8rem;
}

.trust-item {
  display: grid;
  gap: .15rem;
}

.trust-item strong {
  font-size: .95rem;
  color: #0f314b;
}

.trust-item span {
  color: #5b6b7b;
  font-size: .88rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.5rem;
  align-items: end;
}

.hero-copy {
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-bottom: .85rem;
  font-size: .79rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  color: #ebf7f5;
  border: 1px solid rgba(239, 251, 249, .35);
  border-radius: 999px;
  padding: .32rem .72rem;
  background: rgba(8, 34, 39, .35);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.08;
  margin: 0 0 .9rem;
}

.hero-title {
  margin-bottom: 1rem;
}

.hero-title span {
  color: #fdf7eb;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .42);
  background: linear-gradient(105deg, rgba(4, 20, 24, .7), rgba(4, 20, 24, .32));
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  display: inline;
  padding: .08em .34em;
  box-decoration-break: clone;
}

.hero-lead {
  font-size: 1.07rem;
}

.hero p {
  margin: 0 0 1.5rem;
  color: #d8e6f3;
  max-width: 58ch;
}

.hero-proof-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .42rem;
}

.hero-proof-list li {
  color: #d5ece9;
  font-weight: 600;
  font-size: .95rem;
}

.hero-proof-list li::before {
  content: '✓';
  margin-right: .5rem;
  color: #eec164;
  font-weight: 800;
}

.hero-kpi-row {
  margin-top: 1.05rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem;
}

.hero-kpi {
  border: 1px solid rgba(226, 246, 242, .27);
  border-radius: 12px;
  background: rgba(8, 30, 36, .4);
  padding: .58rem .7rem;
  display: grid;
  gap: .1rem;
}

.hero-kpi strong {
  color: #f8fbfb;
  font-family: 'Sora', 'Avenir Next', sans-serif;
  font-size: 1rem;
}

.hero-kpi span {
  color: #d3e7e5;
  font-size: .84rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin: 1.2rem 0 1.6rem;
}

.pill {
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  padding: .35rem .8rem;
  font-size: .9rem;
  color: #ebf5fd;
  background: rgba(255,255,255,.08);
}

.quick-form {
  background: rgba(255,255,255,.98);
  color: var(--text);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid #d0dfdc;
}

.quick-form h3 {
  margin-top: .1rem;
  margin-bottom: .6rem;
  font-size: 1.1rem;
}

.field {
  display: grid;
  gap: .35rem;
  margin-bottom: .8rem;
}

label {
  font-size: .9rem;
  font-weight: 700;
  color: #163f45;
}

input, select, textarea {
  width: 100%;
  border: 1px solid #c5d9d4;
  border-radius: 12px;
  padding: .74rem .88rem;
  font: inherit;
  color: #183a3f;
  background: #fbfdfd;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--brand);
  background: #fff;
  outline: 2px solid rgba(14, 111, 119, .2);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.section-head .section-subtitle {
  margin-bottom: 0;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}

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

.card-body { padding: 1.05rem; }

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.tier-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.tier-card h3 {
  margin: 0;
}

.tier-price {
  margin: .35rem 0 .85rem;
  font-size: 1.75rem;
  font-weight: 800;
  color: #0d3956;
}

.tier-price span {
  font-size: .92rem;
  color: #5b6b7b;
  font-weight: 600;
  margin-left: .25rem;
}

.tier-card ul {
  margin: 0 0 1rem;
  padding-left: 1.05rem;
  color: #36506a;
  display: grid;
  gap: .35rem;
}

.tier-highlight {
  border-color: #7bb2b6;
  box-shadow: 0 12px 28px rgba(14, 111, 119, 0.17);
}

.tier-tag {
  position: absolute;
  right: .9rem;
  top: .9rem;
  font-size: .72rem;
  background: #eef7e6;
  color: #366322;
  border-radius: 999px;
  padding: .22rem .6rem;
  font-weight: 700;
}

.meta {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  color: #4f6478;
  font-size: .9rem;
  margin: .45rem 0;
}

.price {
  margin-top: .85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .7rem;
}

.from {
  font-size: .9rem;
  color: #5b6b7b;
}

.amount {
  font-size: 1.25rem;
  font-weight: 800;
  color: #09314d;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.feature h4 { margin: .1rem 0 .4rem; }
.feature p { margin: 0; color: var(--muted); }

.banner {
  border-radius: var(--radius);
  border: 1px solid #caddd8;
  padding: 1.2rem;
  background: linear-gradient(130deg, #edf8f6, #f7fbfa);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1rem;
  align-items: center;
}

.steps-list {
  margin: 0;
  padding-left: 1.15rem;
  color: #28455f;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .95rem;
}

.process-step {
  background: #fff;
  border: 1px solid #cfe0dc;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.step-index {
  display: inline-flex;
  border-radius: 999px;
  padding: .2rem .55rem;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .07em;
  color: #24545a;
  background: #e8f4f2;
  margin-bottom: .45rem;
}

.process-step h4 {
  margin: 0 0 .35rem;
  color: #153f45;
  font-size: 1rem;
}

.process-step p {
  margin: 0;
  color: #426467;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.social-proof {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1.1rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1rem;
  align-items: center;
}

.rating-score {
  font-size: 2rem;
  line-height: 1;
  margin: 0;
  font-weight: 800;
  color: #0d3956;
}

.rating-meta,
.rating-source {
  margin: .4rem 0 0;
  color: #4f6478;
}

.traveler-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
}

.traveler-photos img {
  height: 130px;
  width: 100%;
  object-fit: cover;
}

blockquote {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem;
  color: #26445f;
  box-shadow: var(--shadow-sm);
}

blockquote footer {
  margin-top: .6rem;
  font-size: .9rem;
  color: #4f6478;
  font-weight: 600;
}

details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .9rem 1rem;
}

details + details { margin-top: .6rem; }

summary {
  cursor: pointer;
  font-weight: 700;
  color: #163853;
}

summary + p {
  margin: .6rem 0 0;
  color: #4f6478;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.info-card, .form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem;
  box-shadow: var(--shadow-sm);
}

.contact-title {
  margin-top: .8rem;
}

.contact-subtitle {
  margin-bottom: .5rem;
}

.info-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  color: #36506a;
  display: grid;
  gap: .55rem;
}

.badge {
  display: inline-flex;
  border-radius: 999px;
  padding: .26rem .7rem;
  background: #e8f7ef;
  color: var(--ok);
  font-size: .85rem;
  font-weight: 700;
}

.form-note {
  font-size: .85rem;
  color: #5b6b7b;
}

footer {
  background: linear-gradient(160deg, #082128, #0e3a44);
  color: #d5e8eb;
  padding: 2.2rem 0 1.1rem;
  margin-top: 2rem;
}

.footer-cta-row {
  border: 1px solid rgba(213, 232, 235, .24);
  background: rgba(255, 255, 255, .04);
  border-radius: 14px;
  padding: 1rem;
  margin-bottom: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-cta-text h3 {
  margin: 0 0 .35rem;
  color: #f2f8ff;
  font-size: 1.08rem;
}

.footer-cta-text p {
  margin: 0;
  color: #b8ccde;
  max-width: 62ch;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 1rem;
}

.footer-brand {
  color: #fff;
}

.footer-description {
  margin: .8rem 0 0;
  color: #b8ccde;
  max-width: 40ch;
}

.footer-contact-list {
  list-style: none;
  margin: .85rem 0 0;
  padding: 0;
  display: grid;
  gap: .35rem;
  color: #b8ccde;
  font-size: .93rem;
}

.footer-title {
  font-weight: 700;
  margin-bottom: .6rem;
  color: #f2f8ff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .4rem;
  font-size: .94rem;
}

.copyright {
  color: #9fb4c8;
  font-size: .9rem;
}

.footer-bottom-row {
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(208, 222, 235, .2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
}

.footer-social a {
  border: 1px solid rgba(208, 222, 235, .26);
  color: #d9e8f6;
  padding: .28rem .62rem;
  border-radius: 999px;
  font-size: .83rem;
}

.footer-social a:hover {
  border-color: #9dc6de;
  color: #fff;
}

.footer-credit {
  margin-top: .85rem;
  color: #9fb7bf;
  font-size: .84rem;
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  padding: .72rem 1rem;
  box-shadow: 0 10px 25px rgba(17, 24, 39, .24);
  transition: transform .2s ease, box-shadow .2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(17, 24, 39, .28);
}

.mobile-cta {
  display: none;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 34, 54, .48);
  opacity: 0;
  pointer-events: none;
  transition: opacity .26s ease;
  z-index: 70;
}

.site-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(540px, 95vw);
  height: 100dvh;
  background: var(--surface-soft);
  transform: translateX(100%);
  transition: transform .32s ease;
  z-index: 71;
  display: grid;
  grid-template-rows: auto 1fr;
  border-left: 1px solid var(--line);
  box-shadow: -16px 0 34px rgba(17, 24, 39, .2);
}

.site-menu-header {
  padding: 1rem;
  border-bottom: 1px solid #e2e9f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-menu-brand {
  font-weight: 800;
  color: #0f314b;
}

.site-menu-brand span {
  color: var(--brand);
}

.menu-close {
  border: 1px solid var(--line);
  background: #fff;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
}

.site-menu-content {
  overflow: auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-content: start;
}

.site-menu-group {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .8rem;
  background: #fff;
}

.site-menu-group h3 {
  margin: 0 0 .55rem;
  font-size: .96rem;
  color: #153955;
}

.site-menu-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .36rem;
}

.site-menu-group a {
  display: block;
  padding: .45rem .55rem;
  border-radius: 8px;
  font-weight: 600;
  color: #29445c;
}

.site-menu-group a:hover,
.site-menu-group a:focus-visible {
  background: #e9f6f5;
  color: #0f3c42;
}

.menu-link-active {
  background: #deefed;
  color: #0c6369;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .site-menu-panel {
  transform: translateX(0);
}

.page-hero {
  background: linear-gradient(125deg, #08262c, #0f7078);
  color: #fff;
  padding: 4rem 0 3rem;
}

.page-hero h1 {
  margin: 0 0 .6rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.page-hero p {
  margin: 0;
  color: #d8e6f3;
  max-width: 70ch;
}

.page-content {
  padding: 3rem 0 4rem;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.mini-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.mini-card h3 {
  margin: 0 0 .4rem;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
}

.stack-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #36506a;
  display: grid;
  gap: .45rem;
}

.primary-links {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.packages-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .28rem .62rem;
  font-size: .82rem;
  color: #355069;
  background: var(--surface);
}

.package-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  box-shadow: var(--shadow-sm);
}

.package-card + .package-card {
  margin-top: 1rem;
}

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

.package-content {
  padding: 1rem;
}

.package-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .8rem;
  flex-wrap: wrap;
}

.package-head h3 {
  margin: 0;
}

.price-block {
  text-align: right;
}

.price-block small {
  display: block;
  color: var(--muted);
}

.price-block strong {
  font-size: 1.25rem;
  color: #0d3956;
}

.info-chip-row {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
  margin: .55rem 0 .65rem;
}

.info-chip {
  background: #e7f4f4;
  color: #1a4b52;
  border-radius: 8px;
  padding: .24rem .56rem;
  font-size: .82rem;
  font-weight: 600;
}

.split-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
  margin: .8rem 0;
}

.split-list h4 {
  margin: 0 0 .35rem;
  font-size: .92rem;
}

.split-list ul {
  margin: 0;
  padding-left: 1rem;
  color: #36506a;
  display: grid;
  gap: .3rem;
}

.package-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.section-block {
  margin-top: 1.25rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 1rem;
}

.featured-main {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.featured-main img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.featured-main-body {
  padding: 1rem;
}

.featured-main-body h3 {
  margin: .4rem 0 .5rem;
  font-size: 1.28rem;
}

.featured-main-body p {
  margin: 0;
}

.featured-side {
  display: grid;
  gap: .85rem;
}

.article-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .95rem;
  box-shadow: var(--shadow-sm);
}

.article-card h3 {
  margin: .35rem 0 .45rem;
  font-size: 1.08rem;
}

.article-card p {
  margin: 0;
}

.article-tag {
  display: inline-flex;
  border-radius: 999px;
  background: #e9f5f3;
  color: #1e545a;
  font-size: .74rem;
  letter-spacing: .03em;
  font-weight: 700;
  text-transform: uppercase;
  padding: .2rem .52rem;
}

.article-meta {
  margin: .58rem 0 .75rem;
  display: flex;
  flex-wrap: wrap;
  gap: .48rem;
  color: #4f6c6f;
  font-size: .84rem;
  font-weight: 600;
}

.article-meta span {
  border: 1px solid #d4e3e0;
  border-radius: 999px;
  padding: .16rem .5rem;
  background: #f7fbfa;
}

.blog-quick-filters {
  margin-bottom: .9rem;
}

.blog-cta-band {
  margin-top: 1.15rem;
}

body.detail-page .page-content {
  background:
    radial-gradient(900px 420px at 92% -10%, rgba(215, 156, 47, .12), transparent 65%),
    radial-gradient(900px 420px at -6% 0%, rgba(14, 111, 119, .11), transparent 66%);
}

body.detail-page .package-overview {
  margin-bottom: .95rem;
}

body.detail-page .package-overview .mini-card {
  border-radius: 14px;
}

body.detail-page .section-block {
  margin-top: 1.05rem;
  background: #fff;
  border: 1px solid #d3e2de;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.05rem;
}

body.detail-page .section-block .section-title {
  margin-bottom: .75rem;
  padding-left: .68rem;
  border-left: 4px solid var(--accent);
}

body.detail-page .banner {
  margin-top: 1.05rem;
}

.detail-utility {
  margin-top: .95rem;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: .95rem;
}

.detail-utility-main,
.detail-utility-cta {
  background: #fff;
  border: 1px solid #d3e2de;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}

.detail-utility-main h2 {
  margin: 0 0 .36rem;
  font-size: 1.18rem;
}

.detail-utility-main p {
  margin: 0;
}

.detail-chip-row {
  margin-top: .72rem;
  display: flex;
  flex-wrap: wrap;
  gap: .52rem;
}

.detail-chip {
  border: 1px solid #c3d8d3;
  border-radius: 999px;
  padding: .35rem .66rem;
  font-size: .82rem;
  font-weight: 700;
  color: #215157;
  background: #f4faf9;
}

.detail-chip:hover,
.detail-chip:focus-visible {
  border-color: var(--brand);
  color: var(--brand);
  background: #e9f5f3;
}

.detail-utility-cta {
  position: sticky;
  top: 92px;
  align-self: start;
}

.detail-utility-tag {
  display: inline-flex;
  border-radius: 999px;
  padding: .2rem .58rem;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #2a5f27;
  background: #edf7e7;
}

.detail-utility-cta h3 {
  margin: .56rem 0 .72rem;
  font-size: 1.03rem;
  color: #153f45;
}

.itinerary-list {
  display: grid;
  gap: .75rem;
}

.itinerary-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius-sm);
  padding: .9rem 1rem;
  box-shadow: var(--shadow-sm);
}

.itinerary-item h3 {
  margin: 0 0 .35rem;
  font-size: 1rem;
  color: #143a55;
}

.itinerary-item p {
  margin: 0;
  color: #39546d;
}

.table-wrap {
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.price-table th,
.price-table td {
  padding: .75rem .8rem;
  text-align: left;
  border-bottom: 1px solid #e4edf5;
}

.price-table th {
  background: #e8f4f3;
  color: #153955;
  font-size: .9rem;
}

.price-table td {
  color: #355069;
  font-size: .93rem;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem .9rem;
  color: #36506a;
  font-size: .92rem;
}

.check-grid label {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-weight: 500;
  color: #36506a;
}

.check-grid input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

@media (max-width: 980px) {
  body {
    padding-bottom: 66px;
  }

  .hero-grid,
  .banner,
  .contact,
  .footer-cta-row,
  .footer-bottom-row,
  .footer-grid,
  .package-overview,
  .package-card,
  .policy-grid,
  .form-grid,
  .check-grid,
  .split-list,
  .trust-strip,
  .tiers,
  .social-proof,
  .traveler-photos,
  .page-grid,
  .features,
  .grid-3,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .hero-kpi-row,
  .process-timeline,
  .featured-grid,
  .featured-side,
  .section-head {
    grid-template-columns: 1fr;
  }

  .featured-main img {
    height: 260px;
  }

  .detail-utility {
    grid-template-columns: 1fr;
  }

  .detail-utility-cta {
    position: static;
  }

  .floating-whatsapp {
    bottom: 74px;
    right: .8rem;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--surface);
    border-top: 1px solid var(--line);
  }

  .mobile-cta a {
    text-align: center;
    padding: .78rem .4rem;
    font-weight: 700;
    color: #14344e;
    border-right: 1px solid #e5edf4;
  }

  .mobile-cta a:last-child {
    border-right: 0;
  }

  .nav-links {
    display: none;
  }

  .site-menu-content {
    grid-template-columns: 1fr;
  }

  .menu-toggle { display: inline-flex; }
  .nav-cta { display: none; }
}

@media (max-width: 640px) {
  .section {
    padding: 3.8rem 0;
  }

  .hero {
    padding-top: 5.6rem;
  }

  .hero h1 {
    line-height: 1.12;
  }

  .hero-title span {
    border-left-width: 3px;
  }

  .hero-proof-list li {
    font-size: .92rem;
  }

  .hero-kpi {
    padding: .52rem .62rem;
  }

  .topbar {
    font-size: .84rem;
  }

  .container {
    width: min(1120px, 94vw);
  }

  .btn,
  .mobile-cta a {
    min-height: 44px;
  }

  .quick-form,
  .form-card,
  .info-card,
  .card-body,
  .package-content {
    padding: .95rem;
  }

  .site-menu-header,
  .site-menu-content {
    padding: .9rem;
  }

  .featured-main img {
    height: 220px;
  }

  body.detail-page .section-block {
    padding: .9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}