:root{
  /* Tours Aldea palette (verde profundo + arena/beige + blancos limpios) */
  --bg: #f7f2e8;
  --bg2: #fbf7ef;
  --paper: rgba(255,255,255,.78);
  --ink: #0b1f18;
  --muted: rgba(11,31,24,.72);

  --green: #0f3b2a;
  --green2:#0b2c20;
  --sand: #e6d2a8;
  --sand2:#d9c18a;
  --line: rgba(15,59,42,.14);

  --shadow: 0 14px 44px rgba(9,23,18,.12);
  --shadow2: 0 18px 70px rgba(9,23,18,.16);

  --r: 18px;
  --r2: 22px;

  --font-sans: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-serif: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;

  --focus: 0 0 0 3px rgba(230,210,168,.55);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background: radial-gradient(1200px 900px at 20% 0%, rgba(230,210,168,.24), transparent 55%),
              radial-gradient(900px 700px at 85% 25%, rgba(15,59,42,.10), transparent 58%),
              var(--bg);
  color:var(--ink);
  font-family:var(--font-sans);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

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

.container{
  width:min(1120px, calc(100% - 40px));
  margin-inline:auto;
}

.skip-link{
  position:absolute;
  left:12px;
  top:12px;
  padding:10px 12px;
  border-radius:12px;
  background:#fff;
  box-shadow: var(--shadow);
  transform: translateY(-160%);
  transition: transform .2s ease;
  z-index: 9999;
}
.skip-link:focus{ transform: translateY(0); outline:none; box-shadow: var(--shadow), var(--focus); }

/* Header */
.header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index: 50;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.header--top{
  background: linear-gradient(180deg, rgba(11,44,32,.56), rgba(11,44,32,.16) 55%, rgba(11,44,32,0));
}
.header__inner{
  height: 92px; /* ↑ para que el logo grande no se corte */
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 190px;
}

.brand__logoWrap{
  width: 82px;          /* ↑ más grande */
  height: 82px;
  border-radius: 20px;
  overflow:hidden;
  background: rgba(255,255,255,.80);
  box-shadow: 0 10px 26px rgba(0,0,0,.12);
  border: 1px solid rgba(230,210,168,.45);
}
.brand__logo{
  width:100%;
  height:100%;
  object-fit:cover;
}

.brand__text{
  display:flex;
  flex-direction:column;
  line-height:1;
}
.brand__kicker{
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: .2px;
  color: rgba(255,255,255,.92);
  font-size: 18px;
}

/* Desktop nav */
.nav--desktop{
  display:none;
  align-items:center;
  gap:18px;
}
.nav__link{
  font-weight: 500;
  font-size: 16px;
  color: rgba(255,255,255,.92);
  padding:10px 10px;
  border-radius: 999px;
  transition: background .18s ease, transform .18s ease;
}
.nav__link:hover{
  background: rgba(255,255,255,.10);
  transform: translateY(-1px);
}
.nav__link:focus{ outline:none; box-shadow: var(--focus); }

/* Menu button */
.menuBtn{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.94);
  cursor:pointer;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.menuBtn:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.26);
  transform: translateY(-1px);
}
.menuBtn:focus{ outline:none; box-shadow: var(--focus); }
.menuBtn__label{ font-weight: 600; font-size: 16px; letter-spacing:.2px; }
.menuBtn__icon{
  width: 18px;
  height: 12px;
  position: relative;
}
.menuBtn__icon::before,
.menuBtn__icon::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  border-radius:999px;
  background: rgba(255,255,255,.92);
}
.menuBtn__icon::before{ top:1px; }
.menuBtn__icon::after{ bottom:1px; }

/* Floating mini header (DISABLED completely) */
.floatbar{ display:none !important; }

/* Drawer */
.drawer{
  position:fixed;
  inset:0;
  z-index: 80;
  display:none;
}
.drawer.is-open{ display:block; }
.drawer__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.38);
  backdrop-filter: blur(2px);
}
.drawer__panel{
  position:absolute;
  top:0;
  right:0;
  height:100%;
  width:min(420px, 88vw);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.80));
  border-left: 1px solid rgba(15,59,42,.14);
  box-shadow: -18px 0 70px rgba(0,0,0,.22);
  padding: 18px 18px 22px;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.drawer__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.drawer__brand{
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--green);
}
.drawer__hint{
  margin-top:4px;
  font-size: 13px;
  color: rgba(15,59,42,.76);
}
.drawer__close{
  border: 1px solid rgba(15,59,42,.18);
  background: rgba(255,255,255,.8);
  padding: 10px 12px;
  border-radius: 999px;
  cursor:pointer;
}
.drawer__close:focus{ outline:none; box-shadow: var(--focus); }
.drawer__nav{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding-top: 8px;
}
.drawer__link{
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(230,210,168,.18);
  border: 1px solid rgba(15,59,42,.12);
  font-weight: 600;
  color: var(--green);
  transition: transform .18s ease, background .18s ease;
}
.drawer__link:hover{
  transform: translateY(-1px);
  background: rgba(230,210,168,.26);
}
.drawer__cta{
  margin-top:auto;
  padding-top: 10px;
  border-top: 1px solid rgba(15,59,42,.12);
}
.drawer__fine{
  margin: 10px 2px 0;
  font-size: 13px;
  color: rgba(11,31,24,.68);
}
.drawer__social{
  margin-top: 12px;
  display:flex;
  gap:10px;
  align-items:center;
}

/* ===============================
   WhatsApp Floating (clean + no distortion)
   =============================== */
.waFloat{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;

  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;

  width: auto;
  height: auto;

  display:flex;
  align-items:center;
  justify-content:center;

  transition: transform .18s ease;
}
.waFloat:hover{ transform: scale(1.06); }

/* No recorta, no aplasta, no redondea */
.waFloat__icon img{
  width: 64px;       /* tamaño del botón */
  height: auto;      /* mantiene proporción */
  border-radius: 0;  /* forma original */
  object-fit: contain;
  display:block;
}

/* oculto para que no altere la forma */
.waFloat__dot{ display:none; }

/* Hero */
.hero{
  position:relative;
  min-height: 100svh;
  overflow:hidden;
  color:#fff;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(11,44,32,.28) 0%,
    rgba(11,44,32,.28) 35%,
    rgba(11,44,32,.58) 78%,
    rgba(11,44,32,.72) 100%
  );
}
.hero__video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.03);
  filter: brightness(.92) contrast(1.06) saturate(1.04);
}
.hero__mayan{
  position:absolute;
  inset:0;
  z-index: 2;
  opacity: .10;
  pointer-events:none;
  background:
    radial-gradient(520px 340px at 16% 30%, rgba(230,210,168,.18), transparent 58%),
    radial-gradient(520px 340px at 86% 64%, rgba(214,191,142,.14), transparent 60%),
    repeating-linear-gradient(135deg, rgba(230,210,168,.12) 0 1px, transparent 1px 14px);
  mask-image: radial-gradient(980px 620px at 50% 46%, #000 34%, transparent 73%);
}
.hero__content{
  position:relative;
  z-index: 3;
  padding: 128px 0 56px; /* ← dejamos esto como estaba “estable” */
  max-width: 980px;
  text-shadow:
    0 3px 14px rgba(0,0,0,.50),
    0 18px 50px rgba(0,0,0,.32);
}
.hero__eyebrow{
  font-weight: 700;
  letter-spacing: .18em;
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
}
.hero__title{
  margin: 16px 0 10px;
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: .2px;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.02;
}
.hero__lead{
  margin: 0 0 20px;
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.55;
  color: rgba(255,255,255,.92);
  max-width: 70ch;
}

/* --- SOLO bajar botones + nota (sin romper el layout) --- */
.hero__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px; /* ↓ baja capsulas */
}
.hero__note{
  margin-top: 18px; /* ↓ baja Quick message */
  font-size: 14px;
  color: rgba(255,255,255,.86);
}

@media (max-width: 600px){
  .hero__actions{ margin-top: 34px; }
  .hero__note{ margin-top: 20px; }
}

/* Scroll-down */
.scrolldown{
  position:absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  display:flex;
  align-items:center;
  justify-content:center;
}
.scrolldown__ring{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(230,210,168,.92);
  box-shadow: 0 0 0 5px rgba(230,210,168,.18);
}

/* Sections */
.section{ padding: 56px 0; }
.section--alt{
  background: linear-gradient(180deg, rgba(15,59,42,.06), rgba(230,210,168,.10));
  border-top: 1px solid rgba(15,59,42,.12);
  border-bottom: 1px solid rgba(15,59,42,.12);
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom: 18px;
}
.section__title{
  margin:0;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--green);
  font-size: 30px;
}
.section__sub{
  margin:0;
  color: rgba(11,31,24,.76);
  max-width: 66ch;
  font-size: 16px;
  line-height: 1.6;
}
.section--tours{ padding-top: 44px; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .1px;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  user-select:none;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 12px 30px rgba(0,0,0,.10); }
.btn:focus{ outline:none; box-shadow: var(--focus); }
.btn--full{ width:100%; }
.btn--primary{
  background: linear-gradient(180deg, var(--sand), var(--sand2));
  color: var(--green2);
  border-color: rgba(15,59,42,.12);
}
.btn--ghost{
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.22);
}
.section .btn--ghost{
  background: rgba(255,255,255,.72);
  color: var(--green);
  border-color: rgba(15,59,42,.14);
}

/* Tours grid */
.tourGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 16px;
}
.tourCard{
  position:relative;
  border-radius: var(--r2);
  overflow:hidden;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,59,42,.14);
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.tourCard:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
}
.tourCard__media{
  position:relative;
  aspect-ratio: 16 / 10;
  background: rgba(15,59,42,.06);
}
.tourCard__media img{
  width:100%;
  height:100%;
  object-fit: cover;
}
.tourCard__tag{
  position:absolute;
  left: 12px;
  top: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,59,42,.12);
  font-weight: 800;
  font-size: 12px;
  color: var(--green);
}
.tourCard__body{ padding: 14px 14px 14px; }
.tourCard__title{
  margin: 0 0 6px;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--green2);
  font-size: 20px;
  line-height: 1.15;
}
.tourCard__kicker{
  margin: 0 0 10px;
  color: rgba(11,31,24,.72);
  font-weight: 600;
  font-size: 14px;
}
.tourCard__desc{
  margin: 0 0 12px;
  color: rgba(11,31,24,.72);
  line-height: 1.55;
  font-size: 15px;
}
.tourCard__cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(15,59,42,.10);
}
.tourCard__link{
  font-weight: 800;
  color: var(--green);
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,59,42,.14);
  background: rgba(230,210,168,.18);
  transition: transform .18s ease, background .18s ease;
}
.tourCard__link:hover{
  transform: translateY(-1px);
  background: rgba(230,210,168,.26);
}
.tourCard__meta{
  font-size: 13px;
  color: rgba(11,31,24,.62);
  font-weight: 600;
}

/* Callout */
.callout{
  margin-top: 18px;
  border-radius: var(--r2);
  border: 1px solid rgba(15,59,42,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.72));
  box-shadow: var(--shadow);
  padding: 16px;
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.callout__title{
  margin:0 0 6px;
  font-family: var(--font-serif);
  color: var(--green2);
  font-size: 22px;
}
.callout__p{
  margin:0;
  color: rgba(11,31,24,.72);
  line-height: 1.6;
}
.callout__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Two column */
.twoCol{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.featureCard{
  border-radius: var(--r2);
  border: 1px solid rgba(15,59,42,.14);
  background: rgba(255,255,255,.80);
  box-shadow: var(--shadow);
  padding: 16px;
}
.featureCard__title{
  margin:0 0 10px;
  font-family: var(--font-serif);
  color: var(--green2);
  font-size: 22px;
}
.checkList{
  margin: 0 0 14px;
  padding: 0 0 0 18px;
  color: rgba(11,31,24,.74);
  line-height: 1.7;
  font-weight: 600;
}

/* Details */
.details{
  border-radius: var(--r2);
  border: 1px solid rgba(15,59,42,.12);
  background: rgba(255,255,255,.70);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  padding: 12px 14px;
  margin-top: 12px;
}
.details__summary{
  cursor:pointer;
  font-weight: 800;
  color: var(--green);
}
.details__summary:focus{ outline:none; box-shadow: var(--focus); }
.details__content{
  padding-top: 10px;
  color: rgba(11,31,24,.72);
  line-height: 1.65;
}

/* Commitment pills */
.pillGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}
.pill{
  border-radius: var(--r2);
  border: 1px solid rgba(15,59,42,.14);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  padding: 16px;
}
.pill__title{
  margin:0 0 6px;
  font-family: var(--font-serif);
  color: var(--green2);
  font-size: 20px;
}
.pill__p{
  margin:0;
  color: rgba(11,31,24,.72);
  line-height: 1.6;
}

/* Contact */
.contactGrid{
  margin-top: 16px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.contactCard,
.formCard{
  border-radius: var(--r2);
  border: 1px solid rgba(15,59,42,.14);
  background: rgba(255,255,255,.80);
  box-shadow: var(--shadow);
  padding: 16px;
}
.contactCard__title,
.formCard__title{
  margin:0 0 8px;
  font-family: var(--font-serif);
  color: var(--green2);
  font-size: 22px;
}
.contactCard__p{
  margin:0 0 12px;
  color: rgba(11,31,24,.72);
  line-height: 1.6;
}
.contactCard__divider{
  height:1px;
  background: rgba(15,59,42,.12);
  margin: 14px 0;
}
.socialRow{
  display:flex;
  gap:10px;
  align-items:center;
  margin-top: 10px;
}
.iconLink{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(230,210,168,.18);
  border: 1px solid rgba(15,59,42,.12);
  transition: transform .18s ease, background .18s ease;
}
.iconLink:hover{
  transform: translateY(-1px);
  background: rgba(230,210,168,.26);
}
.iconLink img{
  width: 22px;
  height: 22px;
  object-fit: cover;
  border-radius: 6px;
}

.formGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
  margin-bottom: 12px;
}
.field{ display:flex; flex-direction:column; gap: 6px; }
.field__label{ font-weight: 800; color: rgba(11,31,24,.80); font-size: 13px; }
.field__input{
  border-radius: 14px;
  border: 1px solid rgba(15,59,42,.16);
  background: rgba(255,255,255,.86);
  padding: 12px 12px;
  font-size: 16px;
  color: var(--ink);
}
.field__input:focus{
  outline:none;
  box-shadow: var(--focus);
  border-color: rgba(15,59,42,.26);
}
.field--full{ grid-column: 1 / -1; }
.field__textarea{ resize: vertical; min-height: 120px; }

.fineprint{
  margin: 10px 2px 0;
  font-size: 12px;
  color: rgba(11,31,24,.64);
  line-height: 1.5;
}

/* TripAdvisor wrap */
.taWrap{
  border-radius: var(--r2);
  border: 1px solid rgba(15,59,42,.14);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  padding: 14px;
  margin-bottom: 14px;
}
.taFallback{ margin-top: 10px; }

/* Footer */
.footer{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(15,59,42,.12);
  text-align:center;
}
.footer__brand{
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--green2);
  font-size: 18px;
}
.footer__meta{
  margin-top: 6px;
  color: rgba(11,31,24,.70);
  font-weight: 600;
  font-size: 13px;
}
.footer__fine{
  margin-top: 10px;
  color: rgba(11,31,24,.60);
  font-size: 12px;
}
.dot{ margin: 0 8px; color: rgba(11,31,24,.45); }

.link{
  color: var(--green);
  font-weight: 800;
}
.link:hover{ text-decoration: underline; }

/* Responsive */
@media (min-width: 860px){
  .nav--desktop{ display:flex; }
  .menuBtn{ display:none; }
  .twoCol{ grid-template-columns: 1.1fr .9fr; align-items:start; }
  .pillGrid{ grid-template-columns: repeat(3, 1fr); }
  .tourGrid{ grid-template-columns: repeat(2, 1fr); }
  .contactGrid{ grid-template-columns: 1fr 1.1fr; }
  .formGrid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px){
  /* Ajuste para que el logo grande no se “pegue” arriba en móvil */
  .header__inner{ height: 84px; }
  .brand__logoWrap{
    width: 68px;
    height: 68px;
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .btn, .tourCard, .nav__link, .menuBtn, .iconLink{ transition:none; }
  .hero__video{ transform:none; }
}
/* ===============================
   Brand logo – slightly bigger
   =============================== */

/* Contenedor del logo */
.brand__logoWrap{
  width: 64px;
  height: 64px;
  border-radius: 16px;
}

/* Imagen del logo */
.brand__logo{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
