/* ═══════════════════════════════════════════════════
   LATINO VIBE TOURS — Shared Styles
   Verde pino #0B5428 | Naranja #F28C00 | Crema #FAF8F2
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600&family=Caveat:wght@600;700&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #FAF8F2;
  color: #303530;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Variables ── */
:root {
  --pine:       #0B5428;
  --pine-dark:  #073B20;
  --pine-light: #1a7a40;
  --orange:     #F28C00;
  --orange-dark:#c97200;
  --orange-light:#ffaa33;
  --cream:      #FAF8F2;
  --white:      #ffffff;
  --gray-text:  #303530;
  --gray-500:   #6b7280;
  --gray-300:   #d1d5db;
  --gray-100:   #f3f4f6;
  --font-head:  'Poppins', sans-serif;
  --font-body:  'Inter', sans-serif;
  --font-vibe:  'Caveat', cursive;
  --max-w:      1160px;
  --radius:     20px;
  --radius-sm:  12px;
  --shadow:     0 4px 24px rgba(11,84,40,.10);
  --shadow-lg:  0 12px 48px rgba(11,84,40,.15);
}

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,242,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11,84,40,.1);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(11,84,40,.12); }
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo img { height: 44px; width: auto; mix-blend-mode: multiply; }
.nav__logo-text { display: none; }
.nav__links {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  gap: 4px;
}
@media (min-width: 900px) { .nav__links { display: flex; } }
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-text);
  padding: 6px 12px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.nav__links a:hover,
.nav__links a.active {
  background: rgba(11,84,40,.08);
  color: var(--pine);
  font-weight: 600;
}
.nav__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__social {
  display: none;
  align-items: center;
  gap: 6px;
}
@media (min-width: 900px) { .nav__social { display: flex; } }
.nav__social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(11,84,40,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pine);
  transition: background .2s, color .2s;
}
.nav__social a:hover {
  background: var(--orange);
  color: var(--white);
}
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (min-width: 900px) { .nav__hamburger { display: none; } }
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pine);
  border-radius: 2px;
  transition: all .3s;
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__close {
  align-self: flex-end;
  background: var(--gray-100);
  border: none;
  color: var(--gray-text);
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--pine);
  padding: 10px 0;
  border-bottom: 1px solid rgba(11,84,40,.1);
  transition: color .2s, padding-left .2s;
}
.mobile-menu a:hover { color: var(--orange); padding-left: 8px; }
.mobile-menu__cta { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn--orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242,140,0,.35);
}
.btn--pine {
  background: var(--pine);
  color: var(--white);
  border-color: var(--pine);
}
.btn--pine:hover {
  background: var(--pine-light);
  border-color: var(--pine-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,84,40,.3);
}
.btn--outline {
  background: transparent;
  color: var(--pine);
  border-color: var(--pine);
}
.btn--outline:hover {
  background: var(--pine);
  color: var(--white);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }
.btn--sm { padding: 9px 18px; font-size: 13px; }

/* ── Page Hero (interior) ── */
.page-hero {
  background: var(--pine);
  padding: 80px 20px 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero__label {
  font-family: var(--font-vibe);
  font-size: 22px;
  color: var(--orange);
  margin-bottom: 8px;
}
.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  max-width: 540px;
  line-height: 1.65;
}

/* ── Sections ── */
.section { padding: 80px 20px; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--pine { background: var(--pine); }
.section--pine-dark { background: var(--pine-dark); }
.section__inner { max-width: var(--max-w); margin: 0 auto; }
.section__label {
  font-family: var(--font-vibe);
  font-size: 22px;
  color: var(--orange);
  margin-bottom: 6px;
}
.section__title {
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 800;
  color: var(--pine);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section__title--white { color: var(--white); }
.section__body {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.section__body--white { color: rgba(255,255,255,.75); }
.section__header { margin-bottom: 48px; }
.section__header--center { text-align: center; }
.section__header--center .section__body { margin-left: auto; margin-right: auto; }

/* ── Tour Card ── */
.tour-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.tour-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  position: relative;
}
.tour-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.tour-card__img-wrap { position: relative; }
.tour-card__body { padding: 22px; }
.tour-card__location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--pine);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.tour-card__title {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--gray-text);
  margin-bottom: 12px;
  line-height: 1.25;
}
.tour-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.tour-card__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
}
.tour-card__meta-item svg { color: var(--pine); flex-shrink: 0; }
.tour-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
  margin-top: 4px;
}
.tour-card__price {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--pine);
}
.tour-card__price span {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-500);
  font-family: var(--font-body);
}
.tour-card__spots {
  font-size: 12px;
  color: var(--orange);
  font-weight: 600;
}

/* ── Value Card ── */
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform .25s;
}
.value-card:hover { transform: translateY(-4px); }
.value-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(11,84,40,.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--pine);
}
.value-card__title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-text);
  margin-bottom: 8px;
}
.value-card__desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ── CTA Strip ── */
.cta-strip {
  background: var(--pine);
  padding: 72px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(242,140,0,.2) 0%, transparent 70%);
}
.cta-strip__inner { position: relative; z-index: 1; max-width: var(--max-w); margin: 0 auto; }
.cta-strip__label {
  font-family: var(--font-vibe);
  font-size: 24px;
  color: var(--orange);
  margin-bottom: 8px;
}
.cta-strip__title {
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
}
.cta-strip__sub {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-strip__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: var(--pine-dark);
  padding: 64px 20px 32px;
}
.footer__inner { max-width: var(--max-w); margin: 0 auto; }
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 640px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer__top { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__logo img { height: 44px; width: auto; }
.footer__logo-text { display: none; }
.footer__desc {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: 20px;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
}
.footer__social a:hover {
  background: var(--orange);
  color: var(--white);
}
.footer__col-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer__links a:hover { color: var(--white); }
.footer__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-bottom: 24px;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.35);
}

/* ── Sticky Mobile CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--white);
  border-top: 1px solid var(--gray-300);
  padding: 12px 16px;
  display: flex;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}
@media (min-width: 768px) { .sticky-cta { display: none; } }
.sticky-cta .btn { flex: 1; justify-content: center; font-size: 13px; padding: 11px 16px; }

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
