/* ==========================================
   THC Travel — Redesign Premium
   Fuentes: Cormorant Garamond + DM Sans
   Paleta: Rojo institucional / Negro / Crema
   ========================================== */

:root {
  --ink:       #0f0e0c;
  --ink-2:     #3a3732;
  --ink-3:     #7a766e;
  --paper:     #faf8f5;
  --paper-2:   #f1ede6;
  --paper-3:   #e8e1d7;
  --brand:      #c0392b;
  --brand-dark: #922b21;
  --red:       #b5382a;
  --dark-bg:   #111009;
  --dark-surf: #1c1a14;
  --dark-bdr:  #2e2b22;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 14px;

  --trans: 220ms cubic-bezier(.4,0,.2,1);
  --container: 1160px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- UTILITIES ---- */
.container {
  width: min(var(--container), calc(100% - 48px));
  margin: auto;
}
em { font-style: italic; }
.overline {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 16px;
}
.overline-light { color: var(--brand); }

h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--ink);
}
h2 em { font-weight: 400; color: var(--brand-dark); }

h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
}

p { color: var(--ink-3); line-height: 1.8; font-size: .95rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--trans);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--ink-2); }

.btn-accent {
  background: var(--brand);
  color: var(--ink);
  border-color: var(--brand);
}
.btn-accent:hover { background: var(--brand-dark); color: #fff; }

.btn-light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.btn-light:hover { background: var(--paper-2); }

.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.3);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}

.btn-full { width: 100%; justify-content: center; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0;
  transition: var(--trans);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 10px 50px;
  min-height: 72px;
  transition: var(--trans);
}
.nav-scrolled .nav-inner {
  background: rgba(15,14,12,.92);
  backdrop-filter: blur(12px);
  padding: 8px 50px;
  min-height: 64px;
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
  letter-spacing: .06em;
  flex-shrink: 0;
}
.logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  flex-shrink: 0;
}
.logo-img-footer {
  height: 120px;
  mix-blend-mode: screen;
  opacity: .85;
}
.logo em { font-style: italic; color: var(--brand); font-weight: 400; }

.nav-links {
  display: flex;
  gap: 36px;
  margin-left: auto;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  letter-spacing: .04em;
  transition: var(--trans);
}
.nav-links a:hover { color: #fff; }

.nav-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--ink);
  background: var(--brand);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--trans);
}
.nav-cta:hover { background: var(--brand-dark); color: #fff; transform: translateY(-1px); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(8,7,5,.88) 0%,
    rgba(8,7,5,.60) 50%,
    rgba(8,7,5,.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 180px 60px 80px;
  max-width: 760px;
}
.hero-content .tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 24px;
}
.hero-content .tag::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--brand);
}
.hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 28px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--brand);
  font-weight: 400;
}
.hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 32px 60px;
  margin-top: auto;
  background: rgba(15,14,12,.6);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(192,57,43,.2);
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 40px;
}
.stat:first-child { padding-left: 0; }
.stat strong {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--brand);
  line-height: 1;
}
.stat span {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: 6px;
}
.stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* ---- SECTIONS ---- */
.section {
  padding: 110px 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}
.section.revealed { opacity: 1; transform: translateY(0); }

.section-dark {
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-bdr);
  border-bottom: 1px solid var(--dark-bdr);
}
.section-dark h2 { color: #fff; }
.section-dark h2 em { color: var(--brand); }
.section-dark p { color: rgba(255,255,255,.55); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}
.section-head p { margin-top: 16px; }

/* ---- BENEFITS GRID ---- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--paper-3);
  border: 2px solid var(--paper-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.benefit-card {
  background: var(--paper);
  padding: 40px 36px;
  transition: var(--trans);
  position: relative;
}
.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transition: var(--trans);
}
.benefit-card:hover::after { transform: scaleX(1); }
.benefit-card:hover { background: var(--paper-2); }

.bc-icon {
  width: 44px;
  height: 44px;
  color: var(--brand-dark);
  margin-bottom: 20px;
}
.bc-icon svg { width: 100%; height: 100%; }

.benefit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 400;
}
.benefit-card p { font-size: .88rem; line-height: 1.7; }

/* ---- PROGRAMA ---- */
.program-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.program-copy h2 { margin-bottom: 20px; }
.program-copy p { margin-bottom: 36px; }

.checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin-bottom: 44px;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
}
.checklist li span {
  color: var(--brand);
  font-size: 1rem;
  flex-shrink: 0;
}

.program-visual { position: relative; }
.pv-card {
  background: var(--dark-surf);
  border: 1px solid var(--dark-bdr);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.9;
}
.pv-header {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--dark-bdr);
}
.pv-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--dark-bdr);
}
.pv-body { padding: 28px 32px; }
.pv-line { white-space: nowrap; }
.pv-indent { padding-left: 24px; }
.pv-k { color: #7eb3d8; }
.pv-v { color: #d4d0c5; }
.pv-prop { color: #9ec4b0; }
.pv-s { color: var(--brand); }

.pv-badge {
  position: absolute;
  bottom: -18px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 100px;
  letter-spacing: .04em;
  box-shadow: 0 4px 20px rgba(192,57,43,.4);
}

/* ---- CONTACT ---- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-copy h2 { margin-bottom: 18px; }
.contact-copy p { margin-bottom: 32px; }

.contact-info { display: flex; flex-direction: column; gap: 12px; }
.ci-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
}
.ci-item svg { color: var(--brand-dark); flex-shrink: 0; }

.contact-form {
  background: white;
  border: 1px solid var(--paper-3);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: 0 2px 40px rgba(0,0,0,.06);
  display: grid;
  gap: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: grid; gap: 8px; }

label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-2);
}
input, textarea {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--paper-3);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  width: 100%;
  outline: none;
  transition: var(--trans);
}
input::placeholder, textarea::placeholder { color: var(--ink-3); }
input:focus, textarea:focus {
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(192,57,43,.15);
}
textarea { min-height: 160px; resize: vertical; }

/* ---- FOOTER ---- */
.footer {
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-bdr);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .logo { font-size: 1.2rem; }
.footer p { font-size: 12px; color: rgba(255,255,255,.3); }

/* ---- ANIMATIONS ---- */
.fade-up { opacity: 0; transform: translateY(24px); animation: fadeUp .8s ease forwards; }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }
.delay-4 { animation-delay: .6s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  html, body{
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;}
  .logo-img {
  height: 68px;
  }
  .nav-inner { padding: 20px 30px; }
  .nav-scrolled .nav-inner { padding: 14px 30px; }
  .hero-content { padding: 140px 30px 60px; }
  .hero-stats { padding: 28px 30px; }
  .stat { padding: 0 24px; }
  .program-layout, .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .logo-img {
  height: 68px;
  }
  .nav-links, .nav-cta { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-div { display: none; }
  .stat { padding: 0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}
.pv-form .pv-form-header {
  padding: 24px 32px 0;
}
.pv-form-tag {
  display: block;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 6px;
}
.pv-form .pv-form-header h3 {
  font-size: 1.6rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0;
}
.pv-form .pv-form-header h3 em {
  color: var(--brand);
  font-style: italic;
}
.pv-form-body {
  padding: 24px 32px 32px;
  display: grid;
  gap: 16px;
}
.pv-field label {
  display: block;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 6px;
}
.pv-input {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pv-input i { color: var(--brand); font-size: 18px; }
.pv-input-status {
  background: rgba(192,57,43,.12);
  color: var(--brand);
  font-weight: 500;
  justify-content: flex-start;
  gap: 8px;
}.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-social a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: 13px;
  letter-spacing: .04em;
  text-decoration: none;
  transition: var(--trans);
}
.footer-social a i {
  font-size: 18px;
}
.footer-social a:hover {
  color: var(--brand);
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
.ci-item a {
  color: inherit;
  text-decoration: none;
  transition: var(--trans);
}
.ci-item a:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}