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

:root {
  --coral: #FF6B4A;
  --coral-lt: #FF8D71;
  --coral-pale: #FFF0EC;
  --teal: #00B4A0;
  --teal-lt: #00D4BC;
  --teal-pale: #E6FAF8;
  --sun: #FFB800;
  --sun-pale: #FFF8E1;
  --sky: #0099E6;
  --sky-pale: #E6F5FF;
  --ink: #1A1614;
  --body: #3D3530;
  --muted: #8A8280;
  --border: #ECEAE6;
  --white: #FFFFFF;
  --off: #F9F7F4;
}

html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site-shell { min-height: 100vh; display: flex; flex-direction: column; }

.container { max-width: 1100px; margin: 0 auto; }

.nav {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  padding: 0 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  white-space: nowrap;
}

.nav-logo img {
  display: block;
  height: 50px;
  width: auto;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: .9rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .05rem;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-ecuador .nav-links {
  justify-content: flex-start;
}

.country-tabs {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding-right: .8rem;
  margin-right: .35rem;
  border-right: 1px solid var(--border);
  flex: 0 0 auto;
}

.country-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .5rem .75rem;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--body);
  white-space: nowrap;
}

.country-tabs a.current {
  background: var(--coral-pale);
  color: var(--coral);
}

.country-tabs a:hover {
  background: var(--off);
  color: var(--coral);
}

.nav-links > li { position: relative; }

.nav-links > li > a {
  display: block;
  padding: .5rem .68rem;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: background .2s, color .2s;
}

.nav-links > li:hover > a,
.nav-links > li.current > a {
  background: var(--coral-pale);
  color: var(--coral);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 240px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
  padding: .75rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .2s, transform .2s;
}

.nav-links > li:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: .7rem .85rem;
  border-radius: 10px;
  font-size: 13px;
  color: var(--body);
}

.nav-dropdown a:hover {
  background: var(--off);
  color: var(--coral);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: .75rem;
  white-space: nowrap;
}

.nav-phone {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
}

.nav-cta,
.btn-main,
.btn-exc,
.btn-paq,
.btn-auto,
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: .9rem 2rem;
  background: var(--coral);
  color: white;
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 8px 24px rgba(255,107,74,.28);
}

.nav-cta { padding: .55rem 1.1rem; font-size: 12px; box-shadow: none; }

.nav-cta:hover,
.btn-main:hover,
.btn-exc:hover,
.btn-paq:hover,
.btn-auto:hover,
.btn-white:hover {
  background: var(--coral-lt);
  transform: translateY(-2px);
}

.btn-sec {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 2rem;
  background: white;
  color: var(--teal);
  border: 2px solid var(--teal);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  transition: background .2s, transform .15s;
}

.btn-sec:hover { background: var(--teal-pale); transform: translateY(-2px); }

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: white;
  font-size: 18px;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--border);
  background: white;
  padding: 1rem 1.2rem 1.3rem;
}

.mobile-panel a {
  display: block;
  padding: .75rem 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.mobile-panel.open { display: block; }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--off);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(255,107,74,.18) 0%, rgba(0,180,160,.12) 50%, rgba(255,184,0,.15) 100%),
    linear-gradient(to bottom, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 42%, rgba(255,255,255,.96) 100%);
}

.hero-content {
  position: relative;
  max-width: 760px;
  padding: 6.5rem 2.5rem 2.5rem;
  z-index: 2;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.4rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}

.pill-coral { background: var(--coral-pale); color: var(--coral); }
.pill-teal { background: var(--teal-pale); color: var(--teal); }
.pill-sun { background: var(--sun-pale); color: #B88000; }

.hero-title,
.page-hero-title,
.sec-title,
.card-title,
.detail-title,
.footer-logo {
  font-family: "Playfair Display", Georgia, serif;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 1.04;
  color: white;
  margin-bottom: 1.25rem;
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--coral), var(--sun));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--body);
  max-width: 560px;
  line-height: 1.85;
  margin-bottom: 2.2rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-floating-card {
  position: absolute;
  right: 3rem;
  bottom: 5rem;
  background: white;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  border-left: 4px solid var(--teal);
  min-width: 245px;
  z-index: 2;
}

.hero-visual-panel {
  position: absolute;
  right: 3rem;
  top: 8.5rem;
  width: 360px;
  z-index: 2;
}

.hero-thumb-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: 180px 180px;
  gap: 12px;
}

.hero-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,.14);
  border: 1px solid rgba(255,255,255,.55);
}

.hero-thumb.large { grid-row: span 2; }

.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.hero-thumb:hover img { transform: scale(1.04); }

.hero-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,0) 55%);
}

.hero-thumb-label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  color: white;
}

.hero-thumb-label span {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}

.hero-thumb-label strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.15;
  font-weight: 700;
}

.hfc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .35rem;
}

.hfc-val {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
  color: var(--ink);
  line-height: 1;
  margin-bottom: .3rem;
  font-weight: 700;
}

.hfc-sub { font-size: 11px; color: var(--muted); }
.hfc-stars { color: var(--sun); font-size: 14px; letter-spacing: 1px; margin-top: 4px; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 7.5rem 2.5rem 3rem;
  background:
    radial-gradient(circle at top left, rgba(255,107,74,.18), transparent 28%),
    radial-gradient(circle at top right, rgba(0,180,160,.16), transparent 30%),
    linear-gradient(180deg, #fffaf8 0%, #f5fbfb 100%);
  border-bottom: 1px solid rgba(15,35,52,.06);
}

.page-hero-shell {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
}

.page-hero-inner {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  color: var(--ink);
  align-self: center;
}

.page-hero-title {
  font-size: clamp(2.6rem, 4.8vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: .8rem;
  font-weight: 700;
  color: var(--ink);
}

.page-hero-copy {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--body);
}

.page-hero-side {
  display: grid;
  gap: 1rem;
  align-self: center;
}

.page-hero-media {
  position: relative;
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(15,35,52,.08);
  box-shadow: 0 28px 60px rgba(15,35,52,.12);
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,35,52,.12), rgba(15,35,52,0) 42%);
  pointer-events: none;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-side-card {
  position: relative;
  right: auto;
  bottom: auto;
  display: block;
  min-width: 0;
}

.page-hero-pills,
.listing-tabs,
.meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.3rem;
}

.bread {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.4rem 2.5rem 0;
  font-size: 12px;
  color: var(--muted);
}

.bread a { color: var(--teal); }

.section {
  padding: 5rem 2.5rem;
}

.section.alt { background: var(--off); }
.section-inner { max-width: 1100px; margin: 0 auto; }

.ecuador-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7rem 2.5rem 4rem;
  color: white;
  background: #173b34;
}

.ecuador-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.ecuador-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.ecuador-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14,37,34,.78) 0%, rgba(14,37,34,.5) 44%, rgba(14,37,34,.15) 100%),
    linear-gradient(0deg, rgba(0,0,0,.28), rgba(0,0,0,.08));
}

.ecuador-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.ecuador-hero-copy {
  max-width: 680px;
}

.ecuador-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: .92;
  margin: .75rem 0 1rem;
  letter-spacing: 0;
}

.ecuador-hero p {
  max-width: 640px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,.88);
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.country-card,
.region-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  padding: 1.65rem;
  box-shadow: 0 14px 38px rgba(15,35,52,.06);
}

.country-card strong,
.region-card h3 {
  display: block;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.25;
  margin-bottom: .6rem;
}

.country-card span,
.region-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.region-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
}

.region-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: .9rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: var(--teal-pale);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ecuador-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.ecuador-feature {
  padding: 1.75rem;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(15,35,52,.08);
}

.ecuador-feature h3 {
  color: var(--ink);
  margin-bottom: .5rem;
  font-size: 1.1rem;
}

.ecuador-feature p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.ecuador-list {
  display: grid;
  gap: .65rem;
  margin-top: 1.1rem;
  padding: 0;
  list-style: none;
}

.ecuador-list li {
  position: relative;
  padding-left: 1.05rem;
  color: var(--body);
  font-size: 13px;
  line-height: 1.65;
}

.ecuador-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

.ecuador-split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 2rem;
  align-items: start;
  margin-top: 2.25rem;
}

.ecuador-panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  padding: 1.8rem;
  box-shadow: 0 14px 38px rgba(15,35,52,.05);
}

.ecuador-panel h3 {
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: .75rem;
}

.ecuador-panel p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.route-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  padding: 1.55rem;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  box-shadow: 0 14px 38px rgba(15,35,52,.05);
}

.route-days {
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.route-card h3 {
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.25;
}

.route-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.25rem;
}

.ecuador-region-featured {
  border-color: rgba(255,107,74,.38);
  box-shadow: 0 18px 46px rgba(255,107,74,.12);
  background: linear-gradient(180deg, #fff 0%, #fff7f4 100%);
}

.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  color: var(--coral);
}

.sec-eyebrow.teal { color: var(--teal); }
.sec-eyebrow.sun { color: #B88000; }

.sec-eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.sec-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: .9rem;
}

.sec-title em { font-style: italic; color: var(--coral); }

.sec-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.85;
  margin-bottom: 2.8rem;
}

.stats-bar {
  background: linear-gradient(135deg, var(--coral) 0%, #FF8D40 50%, var(--sun) 100%);
  padding: 3.5rem 2.5rem;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.stat {
  text-align: center;
  padding: 1rem 1.25rem;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-left: 1px solid rgba(255,255,255,.22);
}

.stat:first-child { border-left: none; }

.stat-n {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  color: white;
  line-height: 1;
  margin-bottom: .25rem;
  font-weight: 700;
}

.stat-l {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}

.destinos-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 280px 200px;
  gap: 16px;
}
.dest-card {
  position: relative; overflow: hidden; border-radius: 16px; background: var(--off);
  display: block;
}
.dest-card:first-child { grid-row: span 2; }
.dest-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease, filter .4s; filter: brightness(.88) saturate(.95);
}
.dest-card:hover img { transform: scale(1.06); filter: brightness(1) saturate(1.1); }
.dest-over {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,0) 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem;
}
.dest-badge {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .5rem;
}
.badge-coral { background: var(--coral); color: white; }
.badge-teal { background: var(--teal); color: white; }
.badge-sun { background: var(--sun); color: var(--ink); }
.badge-sky { background: var(--sky); color: white; }
.dest-name {
  font-family: "Playfair Display", Georgia, serif; font-size: 1.5rem; font-weight: 700; color: white; line-height: 1.1; margin-bottom: .4rem;
}
.dest-card:first-child .dest-name { font-size: 2.2rem; }
.dest-detail { font-size: 11px; color: rgba(255,255,255,.74); font-weight: 300; }
.dest-chip {
  position: absolute; top: 1rem; right: 1rem; background: rgba(255,255,255,.95);
  border-radius: 8px; padding: 4px 10px; font-size: 10px; font-weight: 700; color: var(--coral);
}

.tabs { display: flex; gap: 8px; margin-bottom: 2.5rem; flex-wrap: wrap; }
.tab {
  padding: .6rem 1.4rem; border-radius: 100px; font-size: 12px; font-weight: 600;
  border: 2px solid var(--border); background: white; color: var(--muted);
}
.tab.active, .tab:hover { background: var(--coral); color: white; border-color: var(--coral); }

.exc-grid, .hoteles-grid, .autos-grid, .testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.exc-card, .hotel-card, .testi-card { background: white; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); transition: transform .3s ease, box-shadow .3s ease; }
.exc-card:hover, .hotel-card:hover, .testi-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.1); }
.exc-img, .hotel-img { height: 190px; overflow: hidden; position: relative; }
.hotel-img { height: 200px; }
.exc-img img, .hotel-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.exc-card:hover .exc-img img, .hotel-card:hover .hotel-img img { transform: scale(1.06); }
.exc-dur {
  position: absolute; bottom: 10px; left: 12px; background: rgba(0,0,0,.65); color: white;
  font-size: 10px; font-weight: 600; padding: 4px 10px; border-radius: 100px;
}
.exc-body, .hotel-body { padding: 1.25rem 1.25rem 1.5rem; }
.exc-type, .hotel-loc {
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); margin-bottom: .4rem;
}
.exc-title, .hotel-name {
  font-family: "Playfair Display", Georgia, serif; font-size: 1.15rem; font-weight: 700; color: var(--ink); line-height: 1.25; margin-bottom: .75rem;
}
.exc-tags, .hotel-features { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 1rem; }
.exc-tag, .hotel-feat {
  font-size: 10px; font-weight: 500; padding: 3px 10px; border-radius: 6px; background: var(--off); color: var(--body);
}
.exc-footer, .hotel-foot {
  display: flex; align-items: end; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 1rem;
}
.exc-from, .hotel-price-from { font-size: 10px; color: var(--muted); }
.exc-amount, .hotel-price-val {
  font-family: "Playfair Display", Georgia, serif; font-size: 1.6rem; font-weight: 700; color: var(--coral); line-height: 1;
}
.hotel-price-val { color: var(--ink); font-size: 1.4rem; }
.exc-pp, .hotel-price-night { font-size: 10px; color: var(--muted); }
.btn-hotel {
  padding: .5rem 1.2rem; background: var(--sky-pale); color: var(--sky);
  font-size: 11px; font-weight: 600; border: 1.5px solid var(--sky); border-radius: 8px;
}
.btn-hotel:hover { background: var(--sky); color: white; }
.hotel-stars {
  position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,.55); color: var(--sun);
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 8px; letter-spacing: 1px;
}

.paq-scroll {
  display: flex; gap: 20px; overflow-x: auto; scrollbar-width: none; padding-bottom: 1rem; cursor: grab;
  margin: 0 -.5rem; padding: .5rem;
}
.paq-scroll::-webkit-scrollbar { display: none; }
.paq-card { flex: 0 0 310px; background: white; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); transition: transform .3s, box-shadow .3s; }
.paq-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,.12); }
.paq-img { height: 210px; overflow: hidden; position: relative; }
.paq-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.paq-card:hover .paq-img img { transform: scale(1.07); }
.paq-ribbon {
  position: absolute; top: 14px; left: 14px; padding: 5px 12px; border-radius: 8px; font-size: 10px; font-weight: 700; letter-spacing: .06em;
}
.ribbon-coral { background: var(--coral); color: white; }
.ribbon-teal { background: var(--teal); color: white; }
.ribbon-sun { background: var(--sun); color: var(--ink); }
.paq-body { padding: 1.4rem; }
.paq-cat {
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); margin-bottom: .4rem;
}
.paq-title {
  font-family: "Playfair Display", Georgia, serif; font-size: 1.25rem; font-weight: 700; color: var(--ink); line-height: 1.2; margin-bottom: 1rem;
}
.paq-feats { list-style: none; margin-bottom: 1.25rem; }
.paq-feats li {
  font-size: 12px; color: var(--muted); padding: 5px 0; border-bottom: 1px solid var(--border);
}
.paq-foot {
  display: flex; align-items: end; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border);
}
.paq-price-label { font-size: 10px; color: var(--muted); margin-bottom: 2px; }
.paq-price-val {
  font-family: "Playfair Display", Georgia, serif; font-size: 1.75rem; font-weight: 700; color: var(--ink);
}

.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.why-card {
  background: white; border-radius: 16px; padding: 2rem 1.5rem; border: 1px solid var(--border);
  text-align: center; transition: transform .3s, box-shadow .3s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.08); }
.why-icon {
  width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem;
  font-size: 22px; font-weight: 700;
}
.icon-coral { background: var(--coral-pale); color: var(--coral); }
.icon-teal { background: var(--teal-pale); color: var(--teal); }
.icon-sun { background: var(--sun-pale); color: #B88000; }
.icon-sky { background: var(--sky-pale); color: var(--sky); }
.why-title {
  font-family: "Playfair Display", Georgia, serif; font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: .5rem;
}
.why-desc { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.75; }

.testi-card { padding: 1.75rem; }
.testi-stars { color: var(--sun); font-size: 16px; letter-spacing: 2px; margin-bottom: 1rem; }
.testi-text {
  font-size: 14px; font-weight: 300; color: var(--body); line-height: 1.85; font-style: italic; margin-bottom: 1.5rem;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: white; flex-shrink: 0;
}
.av1 { background: linear-gradient(135deg, var(--coral), var(--sun)); }
.av2 { background: linear-gradient(135deg, var(--teal), var(--sky)); }
.av3 { background: linear-gradient(135deg, var(--sun), var(--coral)); }
.testi-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.testi-from { font-size: 11px; color: var(--muted); }

.auto-card {
  background: var(--off); border-radius: 16px; padding: 1.5rem; border: 1px solid var(--border); text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.auto-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.09); }
.auto-cat-badge {
  display: inline-block; padding: 4px 14px; border-radius: 100px; margin-bottom: 1rem;
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.auto-img { height: 140px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.auto-img img { height: 100%; object-fit: contain; }
.auto-model {
  font-family: "Playfair Display", Georgia, serif; font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-bottom: .35rem;
}
.auto-specs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 1rem; }
.auto-spec { font-size: 11px; color: var(--muted); }
.auto-price {
  font-family: "Playfair Display", Georgia, serif; font-size: 1.5rem; font-weight: 700; color: var(--coral); margin-bottom: 1rem;
}
.auto-price small { font-size: 11px; color: var(--muted); font-family: inherit; font-weight: 300; }

.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px; z-index: 2;
  color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
}

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

.content-grid.two { grid-template-columns: repeat(2, 1fr); }
.content-grid.four { grid-template-columns: repeat(4, 1fr); }

.card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease;
}

.card.alt { background: var(--off); }

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.1);
}

.card-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--off);
}

.card-media.short { height: 185px; }

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.card.alt .card-media img { object-fit: contain; padding: 1rem; }

.card:hover .card-media img { transform: scale(1.05); }

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  background: var(--coral);
  color: white;
}

.card-stars {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,.55);
  color: var(--sun);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  letter-spacing: 1px;
}

.card-body { padding: 1.25rem 1.25rem 1.5rem; }

.card-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .4rem;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.22;
  margin-bottom: .75rem;
}

.card-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 300;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1rem;
}

.card-tags span {
  font-size: 10px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 6px;
  background: var(--off);
  color: var(--body);
}

.card-list {
  list-style: none;
  margin-bottom: 1.1rem;
}

.card-list li {
  font-size: 12px;
  color: var(--muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}

.card-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.price-label {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.price-value {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--ink);
  font-weight: 700;
}

.price-value.coral { color: var(--coral); }
.price-note { font-size: 10px; color: var(--muted); }

.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  background: white;
  border: 2px solid var(--border);
  color: var(--muted);
  transition: all .2s;
}

.pill-link:hover {
  border-color: var(--coral);
  color: var(--coral);
  background: var(--coral-pale);
}

.detail-wrap {
  padding: 4rem 2.5rem;
  background: var(--white);
}

.detail-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 24px;
}

.detail-panel,
.sidebar-panel {
  background: white;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 48px rgba(0,0,0,.08);
}

.detail-panel { padding: 2rem; }
.sidebar-panel { padding: 1.5rem; }

.rich-text p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--body);
  margin-bottom: 1rem;
  font-weight: 300;
}

.rich-text h2,
.rich-text h3 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--ink);
  line-height: 1.18;
  margin: 1.9rem 0 .9rem;
}

.rich-text h2 { font-size: 1.8rem; }
.rich-text h3 { font-size: 1.3rem; }

.rich-text ul {
  list-style: none;
  margin-top: 1.25rem;
}

.rich-text li {
  padding: .55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}

.related-section {
  padding: 0 2.5rem 5rem;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 6rem 2.5rem;
  background-position: center;
  background-size: cover;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,180,160,.92), rgba(255,107,74,.88));
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.cta-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-sub {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.88);
  margin-bottom: 2rem;
  font-weight: 300;
}

.footer {
  background: var(--ink);
  padding: 3.25rem 2.5rem 1.4rem;
  margin-top: auto;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto 1.6rem;
  display: grid;
  grid-template-columns: 1.7fr .9fr .9fr 1fr;
  gap: 1.5rem 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 1.35rem;
  margin-bottom: .9rem;
  font-weight: 700;
}

.footer-logo img {
  display: block;
  height: 48px;
  width: auto;
}
.footer-tagline,
.footer p,
.footer li a { color: #7A7570; font-size: 12px; line-height: 1.65; font-weight: 300; }

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: white;
  margin-bottom: .8rem;
  padding-bottom: .45rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .35rem; }
.footer-col a:hover { color: var(--coral); }

.footer-offices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem .9rem;
  margin-top: .9rem;
}

.footer-office {
  padding: .7rem .8rem;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  background: rgba(255,255,255,.02);
}

.footer-office strong {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: .3rem;
}

.footer-office a { color: #b9b2ab; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  gap: .8rem;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 10px; color: rgba(122,117,112,.6); }

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: white;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 10px 28px rgba(15,35,52,.05);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin-top: .75rem; color: var(--muted); font-size: 14px; line-height: 1.8; }

@media (max-width: 1100px) {
  .content-grid.four { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-offices { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links, .nav-phone, .nav-cta { display: none; }
  .country-tabs { display: none; }
  .mobile-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .hero-floating-card, .hero-visual-panel { display: none; }
  .destinos-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dest-card:first-child { grid-row: auto; }
  .content-grid,
  .content-grid.two,
  .content-grid.four,
  .detail-grid,
  .stats-inner,
  .exc-grid,
  .hoteles-grid,
  .autos-grid,
  .testi-grid,
  .why-grid { grid-template-columns: 1fr; }
  .hero-content,
  .page-hero-shell,
  .page-hero-inner,
  .section,
  .detail-wrap,
  .related-section,
  .cta-banner,
  .footer,
  .bread { padding-left: 1.25rem; padding-right: 1.25rem; }
  .nav-inner { padding: 0 1.25rem; }
  .nav-logo img { height: 46px; }
  .footer-logo img { height: 44px; }
  .page-hero { padding: 6.5rem 1rem 2.5rem; }
  .page-hero-shell { grid-template-columns: 1fr; }
  .page-hero-media { min-height: 240px; order: -1; }
  .ecuador-hero { min-height: auto; padding: 6.5rem 1.25rem 3rem; }
  .ecuador-hero p { font-size: 16px; }
  .country-grid,
  .region-grid,
  .ecuador-band,
  .ecuador-split,
  .route-grid,
  .season-grid { grid-template-columns: 1fr; }
  .region-card,
  .route-card { min-height: auto; }
}
