:root{
  --brand:#f78539;
  --brand2:#e96f20;
  --bg:#ffffff;
  --ink:#0b1220;
  --muted:rgba(11,18,32,.65);
  --line:rgba(11,18,32,.10);
  --shadow: 0 18px 50px rgba(11,18,32,.10);
  --shadow2: 0 10px 30px rgba(11,18,32,.08);
  --radius:18px;
  --radius2:22px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  background:var(--bg);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
a{color:inherit}
.container{max-width:1180px;margin:0 auto;padding:0 18px}

/* NAV */
.nav{position:sticky; top:0; z-index:50; border-bottom:1px solid var(--line)}
.nav-white{background:#ffffff}
.nav-inner{display:flex; align-items:center; justify-content:space-between; gap:16px; padding:14px 0}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none}
.brand-fallback{font-weight:900; letter-spacing:.2px}
.logo-img{height:84px; width:auto; display:block}

.nav-links{display:flex; gap:14px; flex-wrap:wrap; align-items:center; justify-content:center}
.nav-links a{
  text-decoration:none; font-weight:800; font-size:13px;
  color:rgba(11,18,32,.78);
  padding:10px 10px; border-radius:12px;
}
.nav-links a:hover{background:rgba(11,18,32,.06); color:rgba(11,18,32,.95)}
.nav-actions{display:flex; align-items:center; gap:10px}

.pill{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding:10px 12px; border-radius:999px;
  border:1px solid var(--line);
  background:#fff; text-decoration:none;
  font-weight:900; font-size:13px;
  box-shadow:0 6px 18px rgba(11,18,32,.06);
}

/* HERO */
.hero{position:relative; min-height:78vh; display:flex; align-items:center; overflow:hidden}
.hero-bg{position:absolute; inset:0; z-index:0}
.slide{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:0; transform:scale(1.02);
  transition:opacity .7s ease, transform 2.5s ease;
}
.slide.active{opacity:1; transform:scale(1)}
.hero-overlay{
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.72) 55%, rgba(255,255,255,.45) 100%);
}
.hero-inner{
  position:relative; z-index:2;
  display:grid; grid-template-columns:1.15fr .85fr;
  gap:26px; padding:36px 0;
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  font-weight:900; letter-spacing:.2px;
  color:rgba(11,18,32,.72);
  margin-bottom:10px;
}
.dot{width:10px;height:10px;border-radius:999px;background:var(--brand)}
.hero-copy h1{margin:0 0 10px; font-size:48px; line-height:1.05; letter-spacing:-.8px}
.sub{margin:0 0 14px; color:var(--muted); font-size:16px; line-height:1.6; max-width:640px}

/* Benefits bullets */
.benefits{
  list-style:none; padding:0; margin:14px 0 0;
  display:flex; flex-direction:column; gap:10px;
  max-width:560px;
}
.benefits li{
  display:flex; gap:10px; align-items:flex-start;
  padding:10px 12px;
  border:1px solid rgba(11,18,32,.10);
  border-radius:14px;
  background:rgba(255,255,255,.82);
  box-shadow:0 10px 24px rgba(11,18,32,.06);
  color:rgba(11,18,32,.86);
  font-weight:800;
}
.benefits li:before{
  content:"✓";
  font-weight:900;
  color:var(--brand);
  margin-top:1px;
}

.hero-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px; border-radius:14px;
  border:1px solid rgba(11,18,32,.12);
  background:#fff;
  text-decoration:none;
  font-weight:900; font-size:14px;
  box-shadow:0 8px 20px rgba(11,18,32,.06);
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:var(--brand);
  border-color:var(--brand);
  color:#fff;
}
.btn-primary:hover{background:var(--brand2); border-color:var(--brand2)}
.btn-ghost{
  background:rgba(255,255,255,.90);
  border-color:rgba(11,18,32,.12);
}
.btn-sm{padding:10px 12px; font-size:13px; border-radius:12px}

/* Card (form) */
.card{
  background:rgba(255,255,255,.94);
  border:1px solid rgba(11,18,32,.10);
  border-radius:var(--radius2);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.card-head{
  padding:18px 18px 0;
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:10px;
}
.card-head h2{margin:0; font-size:18px; letter-spacing:-.2px}
.card-head small{color:rgba(11,18,32,.6); font-weight:900}
.card-body{padding:16px 18px 18px}

/* FIX: evitar overflow no mobile (date/select) */
.grid, .field { min-width: 0; }
input, select, textarea { width: 100%; max-width: 100%; }

.grid{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.field{display:flex; flex-direction:column; gap:6px}
.field.row{grid-column:1/-1}
label{font-weight:900; font-size:12px; color:rgba(11,18,32,.75)}
input,select,textarea{
  border:1px solid rgba(11,18,32,.12);
  border-radius:14px;
  padding:12px 12px;
  font:inherit;
  outline:none;
  background:#fff;
}
textarea{min-height:90px; resize:vertical}
.actions{display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top:12px; flex-wrap:wrap}
.hint{color:rgba(11,18,32,.60); font-weight:800; font-size:12px; display:flex; align-items:center; gap:8px}
.mini-info{margin-top:10px; font-size:12px; color:rgba(11,18,32,.65); display:flex; flex-direction:column; gap:6px}
.mini-info a{color:var(--brand2); font-weight:900; text-decoration:none}
.mini-info a:hover{text-decoration:underline}

/* Sections */
.section{padding:64px 0}
.section.alt{background:rgba(11,18,32,.02); border-top:1px solid rgba(11,18,32,.05); border-bottom:1px solid rgba(11,18,32,.05)}
.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:18px}
.section-head h3{margin:0; font-size:28px; letter-spacing:-.5px}
.section-head p{margin:6px 0 0; color:var(--muted); line-height:1.6}

.big-kicker{display:flex; align-items:center; gap:10px; font-weight:900; color:rgba(11,18,32,.7); margin-bottom:10px}
.bar{width:26px;height:3px;border-radius:999px;background:var(--brand)}

.split{display:grid; grid-template-columns:1fr 1fr; gap:26px; align-items:start}
.split-tight{grid-template-columns:1.05fr .95fr}
.panel h3{margin:0 0 10px; font-size:28px; letter-spacing:-.5px}
.btn-row{margin-top:16px; display:flex; gap:10px; flex-wrap:wrap}

/* Rich text */
.richtext p{
  margin:0 0 10px;
  color:rgba(11,18,32,.78);
  line-height:1.65;
  font-size:14px;
  font-weight:600;
}
.richtext p:last-child{margin-bottom:0}

/* Accordion */
.accordion{
  border:1px solid rgba(11,18,32,.10);
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.85);
  box-shadow:var(--shadow2);
}
.acc-item + .acc-item{border-top:1px solid rgba(11,18,32,.08)}
.acc-btn{
  width:100%;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 14px;
  background:transparent;
  border:0;
  cursor:pointer;
  font-weight:900;
  font-size:14px;
  color:rgba(11,18,32,.90);
  text-align:left;
}
.acc-btn:hover{background:rgba(11,18,32,.03)}
.acc-btn .chev{opacity:.7; transition:transform .2s ease}
.acc-item.open .acc-btn .chev{transform:rotate(180deg)}
.acc-panel{max-height:0px; overflow:hidden; transition:max-height .25s ease}
.acc-panel .pad{padding:0 14px 14px}

/* Mini carousel */
.img{border-radius:var(--radius2); overflow:hidden; border:1px solid rgba(11,18,32,.10); box-shadow:var(--shadow)}
.mini-carousel{position:relative; height:520px; background:#fff}
.mini-carousel img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  opacity:0; transition:opacity .35s ease;
}
.mini-carousel img.active{opacity:1}
.mini-nav{position:absolute; inset:auto 14px 14px 14px; display:flex; justify-content:space-between}
.mini-prev,.mini-next{
  width:44px;height:44px;border-radius:14px;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.72);
  backdrop-filter: blur(8px);
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
}
.mini-prev:hover,.mini-next:hover{background:rgba(255,255,255,.90)}

/* Videos */
.videos{display:grid; grid-template-columns:repeat(2,1fr); gap:14px}
.vitem{border-radius:18px; overflow:hidden; border:1px solid rgba(11,18,32,.10); box-shadow:0 10px 24px rgba(11,18,32,.06); background:#fff}
.vitem video{width:100%; height:auto; display:block}

/* Footer */
.footer{padding:54px 0; border-top:1px solid rgba(11,18,32,.10); background:#fff}
.cols{display:grid; grid-template-columns:1.2fr 1fr 1fr 1fr; gap:16px}
.footer h5{margin:0 0 10px; font-size:14px; letter-spacing:.2px}
.footer ul{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px}
.footer a{color:rgba(11,18,32,.70); text-decoration:none; font-weight:800; font-size:13px}
.footer a:hover{color:rgba(11,18,32,.95)}
.footer-pills{margin-top:12px; display:flex; gap:10px; flex-wrap:wrap}
.line{height:1px;background:rgba(11,18,32,.10); margin:22px 0}
.copy{display:flex; justify-content:space-between; align-items:center; gap:10px; flex-wrap:wrap; color:rgba(11,18,32,.55); font-weight:800; font-size:12px}
.copy-links{display:flex; gap:14px; flex-wrap:wrap}
.copy-links a{font-weight:900}

/* Floating Whats */
.whats{
  position:fixed; right:18px; bottom:18px; z-index:80;
  width:54px; height:54px;
  border-radius:999px;
  display:flex; align-items:center; justify-content:center;
  background:var(--brand);
  color:#fff;
  box-shadow:var(--shadow);
  text-decoration:none;
  font-size:22px;
}
.whats:hover{background:var(--brand2)}

/* ===== Language switch (PT/EN/ES) ===== */
.lang-switch{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:0 6px 18px rgba(11,18,32,.06);
}

.lang-btn{
  border:0;
  background:transparent;
  cursor:pointer;
  font:inherit;
  font-weight:900;
  font-size:13px;
  color:rgba(11,18,32,.65);
  padding:2px 2px;
}
.lang-btn:hover{ color:rgba(11,18,32,.92); }
.lang-btn.active{
  color:rgba(11,18,32,.95);
  text-decoration:underline;
  text-underline-offset:3px;
}
.lang-switch .sep{
  opacity:.35;
  font-weight:900;
}

/* opcional: esconder no mobile para não apertar */
@media (max-width: 980px){
  .lang-switch{ display:none; }
}

/* Mobile burger + drawer */
.nav-burger{
  display:none;
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:0 6px 18px rgba(11,18,32,.06);
  cursor:pointer;
  align-items:center;
  justify-content:center;
}
.nav-burger i{font-size:18px; color:rgba(11,18,32,.85)}

.mobile-menu{
  position:fixed;
  inset:0;
  z-index:200;
  background:rgba(11,18,32,.35);
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease;
}
.mobile-menu.open{
  opacity:1;
  pointer-events:auto;
}

.mobile-menu-panel{
  position:absolute;
  top:0; right:0;
  width:min(92vw, 420px);
  height:100%;
  background:#fff;
  border-left:1px solid rgba(11,18,32,.10);
  box-shadow:var(--shadow);
  transform:translateX(100%);
  transition:transform .22s ease;
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.mobile-menu.open .mobile-menu-panel{ transform:translateX(0); }

.mobile-menu-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.mobile-menu-title{
  font-weight:900;
  letter-spacing:-.2px;
}
.mobile-close{
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
}
.mobile-close i{font-size:18px; color:rgba(11,18,32,.85)}

.mobile-links{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.mobile-links a{
  text-decoration:none;
  font-weight:900;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(11,18,32,.08);
  background:rgba(11,18,32,.02);
}
.mobile-links a:hover{ background:rgba(11,18,32,.05); }

.mobile-actions{
  margin-top:auto;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* Language switch (mobile drawer) */
.mobile-lang{
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border:1px solid rgba(11,18,32,.10);
  border-radius:14px;
  background:rgba(11,18,32,.02);
}
.mobile-lang .lang-btn{
  background:transparent;
  border:0;
  padding:0;
  margin:0;
  cursor:pointer;
  font-weight:900;
  font-size:13px;
  color:rgba(11,18,32,.85);
  opacity:.75;
}
.mobile-lang .lang-btn.active{ opacity:1; text-decoration:underline; text-underline-offset:3px; }
.mobile-lang .sep{ opacity:.55; }

/* Show burger on mobile, hide desktop menu */
@media (max-width: 980px){
  .nav-burger{display:inline-flex}
  .nav-links{display:none}
}

/* Responsive */
@media (max-width: 980px){
  .hero-inner{grid-template-columns:1fr; padding:22px 0}
  .logo-img{height:72px}
  .split{grid-template-columns:1fr}
  .mini-carousel{height:360px}
  .videos{grid-template-columns:1fr}
  .cols{grid-template-columns:1fr 1fr; gap:18px}
  .grid{grid-template-columns:1fr}
}

/* ainda mais cedo para telefones pequenos */
@media (max-width: 520px){
  .grid{ grid-template-columns: 1fr; }
}

/* =========================
   MOBILE NAV (FIX FINAL)
   burger esquerda | logo centro | botão direita
========================= */
@media (max-width: 979px){

  .nav .nav-inner{
    display: grid;
    grid-template-columns: 56px 1fr auto; /* burger | logo | actions */
    align-items: center;
    gap: 10px;
    padding: 14px 0;
  }

  /* força posição nas colunas (ordem do HTML não interessa) */
  .nav .nav-burger{
    display: inline-flex;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .nav .brand{
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    display: flex;
    justify-content: center;
    min-width: 0;
  }

  .nav .nav-actions{
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    margin-left: 0;
  }

  /* logo menor no mobile */
  .nav .logo-img{
    height: 58px;
    width: auto;
    max-width: 180px;
  }

  /* botão reservar menor no mobile */
  .nav .nav-actions .btn.btn-primary{
    padding: 10px 10px;
    font-size: 12px;
    border-radius: 12px;
    gap: 8px;
    white-space: nowrap;
  }

  .nav .nav-actions .btn.btn-primary i{
    font-size: 14px;
  }
}
