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

:root {
  --orange: #E07820;
  --orange-dark: #C5651A;
  --orange-light: #F5934A;
  --blue: #1B4F8A;
  --blue-light: #2D6BB0;
  --green: #2D7A3A;
  --black: #1A1A1A;
  --white: #FFFFFF;
  --cream: #FAF8F5;
  --gray: #F0EDE8;
  --text-muted: #6B6560;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

/* ── HEADER ─────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--orange);
  box-shadow: 0 2px 16px rgba(0,0,0,.10);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-wrap img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-contact a {
  text-decoration: none;
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}

.header-contact a:hover { color: var(--orange); }

.btn-whatsapp-header {
  background: #25D366;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 13px !important;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .15s !important;
}

.btn-whatsapp-header:hover {
  background: #1FB857 !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('capa.png');
  background-size: cover;
  background-position: center;
  filter: brightness(.45);
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,26,.75) 0%,
    rgba(224,120,32,.25) 60%,
    rgba(27,79,138,.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,120,32,.20);
  border: 1px solid rgba(224,120,32,.60);
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  max-width: 780px;
  margin-bottom: 18px;
}

.hero-title span { color: var(--orange-light); }

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 400;
  color: rgba(255,255,255,.85);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 48px;
}

.hero-subtitle strong {
  color: var(--orange-light);
  font-weight: 600;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 48px;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
}

.hero-pill-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(224,120,32,.7);
  background: rgba(224,120,32,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(224,120,32,.45);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(224,120,32,.55);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.5);
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

/* ── TRUST BAR ───────────────────────────────────────── */
.trust-bar {
  background: var(--orange);
  padding: 20px 24px;
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.trust-item span:first-child { font-size: 22px; }

/* ── TOURS SECTION ───────────────────────────────────── */
.tours-section {
  background: var(--cream);
  padding: 88px 24px;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
}

.price-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-top: 16px;
}

/* ── GRID DE CARDS ───────────────────────────────────── */
.tours-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
}

.tour-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s, border-color .2s;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.13);
}

.tour-card.in-cart { border-color: var(--orange); }

.tour-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.tour-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  display: block;
}

.tour-card:hover .tour-img-wrap img { transform: scale(1.06); }

.tour-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

.tour-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-destination {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.tour-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 9px;
}

.tour-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.tour-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.tour-meta-item {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  background: var(--gray);
  padding: 3px 10px;
  border-radius: 50px;
}

.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--gray);
  padding-top: 16px;
}

.tour-price-inline { display: flex; flex-direction: column; }

.tour-price-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  font-weight: 600;
}

.tour-price-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.tour-price-per { font-size: 10px; color: var(--text-muted); }

.btn-add {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 11px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-add:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-add.added { background: var(--green); }
.btn-add.added:hover { background: #245E2E; }

/* ── CART BAR ─────────────────────────────────────────── */
.cart-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  background: var(--black);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateY(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -4px 28px rgba(0,0,0,.3);
}

.cart-bar.visible { transform: translateY(0); }

.cart-bar-info { display: flex; align-items: center; gap: 14px; color: var(--white); }

.cart-count-badge {
  background: var(--orange);
  color: var(--white);
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800;
  flex-shrink: 0;
}

.cart-bar-text { font-size: 14px; font-weight: 500; line-height: 1.35; }
.cart-bar-text strong { color: var(--orange-light); font-size: 18px; font-family: 'Playfair Display', serif; }

.btn-view-cart {
  background: #25D366;
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  transition: background .2s, transform .15s;
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-view-cart:hover { background: #1FB857; transform: translateY(-1px); }

/* ── CART MODAL ──────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-modal {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 310;
  background: var(--white);
  border-radius: 24px 24px 0 0;
  padding: 28px 24px 36px;
  max-height: 80vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}

.cart-modal.open { transform: translateY(0); }

.cart-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}

.cart-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700;
}

.btn-close-modal {
  background: var(--gray); border: none;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}

.btn-close-modal:hover { background: #E0DAD2; }

.cart-item-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray);
  gap: 12px;
}

.cart-item-row:last-child { border-bottom: none; }

.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 15px; color: var(--black); }
.cart-item-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.cart-item-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 800;
  color: var(--orange); flex-shrink: 0;
}

.btn-remove-item {
  background: none; border: none; color: #C0B8B0;
  font-size: 16px; cursor: pointer; padding: 4px;
  transition: color .2s; flex-shrink: 0;
  line-height: 1;
}

.btn-remove-item:hover { color: #E05050; }

.cart-total-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--cream);
  padding: 16px 20px;
  border-radius: 12px;
  margin: 8px 0 18px;
}

.cart-total-label { font-weight: 700; font-size: 15px; }
.cart-total-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 800; color: var(--orange);
}

.cart-note {
  font-size: 12px; color: var(--text-muted);
  text-align: center; margin-bottom: 18px; line-height: 1.5;
}

.btn-whatsapp-order {
  width: 100%; background: #25D366; color: var(--white);
  padding: 16px; border-radius: 50px;
  font-size: 16px; font-weight: 700; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  transition: background .2s, transform .15s;
  text-decoration: none;
}

.btn-whatsapp-order:hover { background: #1FB857; transform: translateY(-1px); }

/* ── CTA BANNER ──────────────────────────────────────── */
.cta-section {
  background: var(--blue);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(224,120,32,.15);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}

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

.cta-inner .section-label { color: rgba(255,255,255,.65); }

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-desc {
  font-size: 16px;
  color: rgba(255,255,255,.80);
  line-height: 1.6;
  margin-bottom: 36px;
}

.cta-desc strong { color: var(--orange-light); }

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-whatsapp-large {
  background: #25D366;
  color: var(--white);
  padding: 18px 42px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}

.btn-whatsapp-large:hover {
  background: #1FB857;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,.45);
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--black);
  padding: 56px 24px 32px;
  color: rgba(255,255,255,.75);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 52px; filter: brightness(0) invert(1); opacity: .85; }

.footer-about {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,.65);
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover { color: var(--orange-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
}

.footer-contact-item span:first-child { font-size: 18px; flex-shrink: 0; margin-top: 1px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.40);
}

.footer-bottom span { color: var(--orange-light); }

/* ── WHATSAPP FLOAT ──────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}

.whatsapp-float:hover {
  transform: scale(1.10);
  box-shadow: 0 8px 30px rgba(37,211,102,.60);
}

.whatsapp-float svg { width: 30px; height: 30px; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .header-inner { padding: 10px 16px; }
  .header-contact .phone-link { display: none; }
  .hero-content { padding: 60px 16px 80px; }
  .hero-pills { gap: 14px; }
  .tours-section { padding: 64px 16px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .tours-grid { grid-template-columns: 1fr; }

  .cart-bar { padding: 12px 16px; }
  .cart-bar-text { font-size: 12px; }
  .cart-bar-text strong { font-size: 15px; }
  .btn-view-cart { padding: 10px 18px; font-size: 13px; }
  .cart-modal { padding: 22px 16px 32px; }
}
