/* ===== Bonder — estilos compartidos ===== */

:root{
  --navy:#0D1B2A;
  --sage:#A8D5C2;
  --sage-deep:#7FB89E;
  --sand:#EADCC6;
  --sage-tint:#EEF6F1;
  --sand-tint:#FBF4EA;
  --text:#0D1B2A;
  --text-muted:#4A5560;
  --line: rgba(13,27,42,0.12);
  --nav-h: 76px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:#fff;
  color:var(--text);
  font-family:'Poppins', sans-serif;
  font-weight:400;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3{
  font-family:'Poppins', sans-serif;
  font-weight:600;
  letter-spacing:-0.01em;
  margin:0;
  color:var(--navy);
}
p{margin:0;}
a{color:inherit;}
img{max-width:100%; display:block;}

.eyebrow{
  font-size:0.75rem;
  letter-spacing:0.16em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--sage-deep);
}
section{padding:5.5rem 1.5rem;}
.wrap{max-width:1120px; margin:0 auto;}

/* ===== NAV ===== */
header.nav{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,0.94);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
  height:var(--nav-h);
}
.nav-inner{
  max-width:1120px;
  margin:0 auto;
  padding:0 1.5rem;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.nav-logo img{height:34px; width:auto;}
.nav-links{
  display:flex;
  align-items:center;
  gap:1.6rem;
  font-size:0.92rem;
  font-weight:500;
}
.nav-links a{
  color:var(--navy);
  text-decoration:none;
  transition:color .2s ease;
}
.nav-links a:hover, .nav-links a:focus-visible{color:var(--sage-deep);}
.nav-links a[aria-current="page"]{color:var(--sage-deep); font-weight:600;}
.nav-cta{
  background:var(--sage);
  padding:0.6rem 1.3rem;
  border-radius:100px;
  font-size:0.88rem;
  font-weight:600;
  color:var(--navy)!important;
  transition:background .2s ease;
}
.nav-cta:hover{background:var(--sage-deep);}

.nav-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  padding:0.4rem;
  width:40px;
  height:40px;
  align-items:center;
  justify-content:center;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after{
  content:"";
  display:block;
  width:22px;
  height:2px;
  background:var(--navy);
  border-radius:2px;
  transition:transform .25s ease, opacity .25s ease;
}
.nav-toggle::before{transform:translateY(-6px);}
.nav-toggle::after{transform:translateY(4px);}
.nav-toggle span{position:absolute;}
.nav-toggle.is-open::before{transform:translateY(0) rotate(45deg);}
.nav-toggle.is-open::after{transform:translateY(0) rotate(-45deg);}
.nav-toggle.is-open span{opacity:0;}

@media (max-width:880px){
  .nav-toggle{display:flex; position:relative;}
  .nav-links{
    position:fixed;
    top:var(--nav-h);
    left:0;
    right:0;
    background:#fff;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:0.5rem 1.5rem 1.5rem;
    border-bottom:1px solid var(--line);
    transform:translateY(-8px);
    opacity:0;
    pointer-events:none;
    transition:opacity .2s ease, transform .2s ease;
  }
  .nav-links.is-open{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
  }
  .nav-links a{
    padding:0.9rem 0;
    border-bottom:1px solid var(--line);
    width:100%;
  }
  .nav-links a:last-of-type{border-bottom:none;}
  .nav-cta{
    margin-top:1rem;
    text-align:center;
  }
}

/* ===== BUTTONS ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:0.5rem;
  padding:0.85rem 1.7rem;
  border-radius:100px;
  font-weight:600;
  font-size:0.95rem;
  text-decoration:none;
  cursor:pointer;
  border:none;
  transition:transform .2s ease, background .2s ease;
}
.btn-primary{background:var(--sage); color:var(--navy);}
.btn-primary:hover{transform:translateY(-2px); background:var(--sage-deep);}
.btn-ghost{background:transparent; color:#fff; border:1px solid rgba(255,255,255,0.7);}
.btn-ghost:hover{background:rgba(255,255,255,0.12);}
.btn-outline{background:transparent; color:var(--navy); border:1px solid var(--navy);}
.btn-outline:hover{background:var(--sage-tint);}

/* ===== PAGE HERO BAND (interior pages) ===== */
.page-hero{
  background:var(--sand-tint);
  padding:4.5rem 1.5rem 3.5rem;
  text-align:center;
}
.page-hero h1{
  font-size:clamp(2rem, 4.5vw, 3rem);
  margin-top:0.6rem;
}
.page-hero p{
  max-width:52ch;
  margin:1.1rem auto 0;
  color:var(--text-muted);
  font-size:1.05rem;
}

/* ===== PILLARS ===== */
.pillars{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:2rem;
}
.pillar{
  text-align:center;
  padding:1.5rem 1rem;
}
.pillar .icon{
  width:56px;
  height:56px;
  margin:0 auto 1rem;
  border-radius:50%;
  background:var(--sage-tint);
  display:flex;
  align-items:center;
  justify-content:center;
}
.pillar .icon svg{width:26px; height:26px; stroke:var(--sage-deep);}
.pillar h3{font-size:1.05rem; margin-bottom:0.4rem;}
.pillar p{font-size:0.92rem; color:var(--text-muted);}

/* ===== DESTINATIONS ===== */
.dest-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.75rem;
}
.dest-card{
  border:1px dashed var(--navy);
  border-radius:18px;
  padding:2.2rem 2rem;
  min-height:220px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:#fff;
  transition:background .25s ease;
}
.dest-card:hover{background:var(--sage-tint);}
.dest-flag{font-size:2.4rem; line-height:1;}
.dest-flag-icon{
  width:52px;
  height:36px;
  border-radius:6px;
  overflow:hidden;
  box-shadow:0 0 0 1px rgba(13,27,42,0.12);
}
.dest-flag-icon svg{width:100%; height:100%; display:block;}
.dest-card h3{font-size:1.5rem; margin-top:0.8rem;}
.dest-tagline{color:var(--text-muted); font-size:0.95rem; margin-top:0.5rem; max-width:28ch;}
.dest-status{
  margin-top:1.1rem;
  font-size:0.75rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--sage-deep);
  background:var(--sage-tint);
  padding:0.35rem 0.9rem;
  border-radius:100px;
}

/* ===== STEPS (cómo trabajamos) ===== */
.steps{
  display:flex;
  flex-direction:column;
  gap:1.5rem;
}
.step{
  display:grid;
  grid-template-columns:64px 1fr;
  gap:1.4rem;
  align-items:flex-start;
  padding:1.6rem;
  border:1px solid var(--line);
  border-radius:16px;
}
.step-num{
  width:44px;
  height:44px;
  border-radius:50%;
  background:var(--sage);
  color:var(--navy);
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.05rem;
}
.step h3{font-size:1.1rem; margin-bottom:0.4rem;}
.step p{color:var(--text-muted); font-size:0.96rem;}

/* ===== STORY / NOSOTROS ===== */
.story{
  max-width:760px;
  margin:0 auto;
}
.story p{
  color:var(--text-muted);
  font-size:1.05rem;
  margin-bottom:1.2rem;
}
.story p:last-child{margin-bottom:0;}

.meaning-box{
  background:var(--sand-tint);
  border-radius:20px;
  padding:2.6rem;
  max-width:820px;
  margin:0 auto;
}
.meaning-box h2{font-size:1.5rem; margin-bottom:1.1rem; text-align:center;}
.meaning-box p{color:var(--text-muted); font-size:0.98rem; margin-bottom:1rem;}
.meaning-box p:last-child{margin-bottom:0;}
.meaning-box strong{color:var(--navy);}

/* ===== CONTACT ===== */
.contact-card{
  max-width:480px;
  margin:0 auto;
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:2.6rem;
  text-align:center;
}
.contact-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:0.7rem;
  padding:1rem 0;
  font-size:1.05rem;
  font-weight:500;
  border-top:1px solid var(--line);
}
.contact-row:first-of-type{border-top:none;}
.contact-row a{text-decoration:none; color:var(--navy);}
.contact-row a:hover{color:var(--sage-deep);}
.contact-row svg{width:20px; height:20px; stroke:var(--sage-deep); flex-shrink:0;}

/* ===== FORM (interest / waitlist) ===== */
.form-section{background:var(--sage-tint);}
.form-head{max-width:560px; margin:0 auto 2.5rem; text-align:center;}
.form-head h2{font-size:clamp(1.8rem, 3.5vw, 2.4rem); margin-top:0.6rem;}
.form-head p{color:var(--text-muted); margin-top:0.9rem;}
form.interest{
  max-width:520px;
  margin:0 auto;
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:2.2rem;
}
.field{margin-bottom:1.3rem;}
.field label{
  display:block;
  font-size:0.85rem;
  margin-bottom:0.4rem;
  color:var(--sage-deep);
  font-weight:500;
}
.field input[type=text], .field input[type=email]{
  width:100%;
  padding:0.75rem 0.9rem;
  border-radius:10px;
  border:1px solid rgba(13,27,42,0.2);
  background:#fff;
  color:var(--navy);
  font-family:'Poppins', sans-serif;
  font-size:0.95rem;
}
.field input::placeholder{color:#9AA6A0;}
form.interest button{width:100%; margin-top:0.5rem;}
.form-note{
  text-align:center;
  font-size:0.78rem;
  color:#7A8983;
  margin-top:1.2rem;
}
.form-success{
  display:none;
  text-align:center;
  font-size:0.98rem;
  color:var(--navy);
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:2.4rem 2rem;
  max-width:520px;
  margin:0 auto;
}

/* ===== HERO (portada, con vídeo de fondo) ===== */
.hero{
  position:relative;
  overflow:hidden;
  min-height:calc(100svh - var(--nav-h));
  display:flex;
  align-items:center;
  justify-content:center;
  padding:3rem 1.5rem;
  text-align:center;
}
.hero-bg{position:absolute; inset:0; z-index:0; overflow:hidden;}
.hero-bg video{width:100%; height:100%; object-fit:cover;}
.hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(13,27,42,0.45) 0%, rgba(13,27,42,0.5) 60%, rgba(13,27,42,0.35) 100%);
}
.hero-inner{
  max-width:820px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  position:relative;
  z-index:1;
}
.hero h1{
  font-size:clamp(2.1rem, 5vw, 3.6rem);
  line-height:1.18;
  max-width:22ch;
  color:#fff;
  text-shadow:0 2px 18px rgba(0,0,0,0.25);
}
.hero p.lede{
  margin-top:1.6rem;
  max-width:46ch;
  font-size:1.15rem;
  color:rgba(255,255,255,0.9);
  text-shadow:0 1px 12px rgba(0,0,0,0.2);
}
.hero-actions{
  margin-top:2.4rem;
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
  justify-content:center;
}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:0.45rem;
  margin-top:1.3rem;
  color:#fff;
  font-size:0.85rem;
  font-weight:600;
  letter-spacing:0.04em;
  text-transform:uppercase;
  text-shadow:0 1px 10px rgba(0,0,0,0.45), 0 1px 2px rgba(0,0,0,0.6);
}
.hero-badge::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--sage);
  flex-shrink:0;
}

/* ===== PHOTO PLACEHOLDERS ===== */
.photo-slot{
  border-radius:18px;
  display:block;
  width:100%;
}
.photo-slot.wide{aspect-ratio:16/9;}
.photo-slot.card{aspect-ratio:4/3; margin-bottom:1.1rem;}
.photo-slot.portrait{aspect-ratio:4/5; max-width:320px; margin:0 auto 2rem;}

/* ===== CALLOUT ===== */
.callout{
  background:var(--sage-tint);
  border-radius:16px;
  padding:1.8rem 2rem;
  margin-top:0.75rem;
}
.callout h3{margin-bottom:0.5rem; font-size:1.05rem;}
.callout p{color:var(--text-muted); font-size:0.95rem; margin-bottom:1.1rem;}

/* ===== CONCEPT (pilares en portada) ===== */
.concept-head{max-width:640px; margin-bottom:3rem;}
.concept-head h2{font-size:clamp(1.9rem, 3.5vw, 2.6rem); margin-top:0.6rem;}

/* ===== FOOTER ===== */
footer{
  background:#fff;
  color:var(--text-muted);
  padding:2.5rem 1.5rem;
  font-size:0.85rem;
  border-top:1px solid var(--line);
}
.footer-inner{
  max-width:1120px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:1rem;
}
.footer-inner a{text-decoration:none; color:var(--navy);}
.footer-inner a:hover{color:var(--sage-deep);}

@media (max-width:820px){
  .pillars{grid-template-columns:1fr; gap:2.2rem;}
  .dest-grid{grid-template-columns:1fr;}
  .step{grid-template-columns:44px 1fr;}
}
