:root{
  --card: rgba(255,255,255,.92);
  --stroke: rgba(255,255,255,.35);
  --shadow: 0 18px 50px rgba(0,0,0,.22);
  --shadow2: 0 10px 30px rgba(0,0,0,.16);

  --orange: #ff8a00;
  --orange2:#ffb000;
  --blue:#1e63ff;
  --blue2:#2e7dff;

  --text:#0f172a;
  --muted:#4b5563;
  --white:#ffffff;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--white);
  background: #0b1220;
}

.wrap{
  width:min(1100px, 92vw);
  margin:0 auto;
}

/* HERO */
.hero{
  position:relative;
  padding: 28px 0 26px;
  overflow:hidden;
  min-height: 560px;
}
.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.85;
}
/* overlay para garantir legibilidade */
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.62));
  pointer-events:none;
}
.hero-content{
  position:relative;
  z-index:2;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-bottom: 14px;
  opacity:.95;
  text-shadow: 0 2px 10px rgba(0,0,0,.45);
}
.pin{
  width:28px;height:28px;border-radius:50%;
  display:grid;place-items:center;
  background: rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.25);
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
}
.pin::before{
  content:"";
  width:12px;height:12px;border-radius:50%;
  background: rgba(255,210,87,1);
  box-shadow: 0 0 0 5px rgba(255,255,255,.25);
  display:block;
}
.brand{
  font-weight:800;
  font-size: 30px;
  letter-spacing:.2px;
}
.brand span{
  color:#ffd36d;
  font-weight:900;
}

.hero-title{
  margin: 10px auto 10px;
  text-align:center;
  line-height:1.08;
  font-weight:900;
  font-size: clamp(28px, 3.3vw, 48px);
  text-shadow: 0 3px 18px rgba(0,0,0,.55);
}
.hero-title .light{
  font-weight:800;
  color: rgba(255,255,255,.92);
}
.hero-sub{
  max-width: 920px;
  margin: 0 auto 18px;
  text-align:center;
  font-size: clamp(14px, 1.5vw, 18px);
  color: rgba(255,255,255,.9);
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}

.cta-row{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  margin: 14px 0 22px;
}
.btn{
  border:0;
  cursor:pointer;
  font-weight:900;
  letter-spacing:.4px;
  padding: 14px 22px;
  border-radius: 12px;
  box-shadow: var(--shadow2);
  text-transform:uppercase;
  font-size: 15px;
}
.btn.orange{
  background: linear-gradient(180deg, var(--orange), #ff6a00);
  color:#1b0f00;
}
.btn.yellow{
  background: linear-gradient(180deg, #ffcf2f, var(--orange2));
  color:#1b1200;
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 8px;
}
.card{
  background: rgba(255,255,255,.93);
  color: var(--text);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.35);
  position:relative;
}
.media{
  height: 132px;
  position:relative;
  background: rgba(0,0,0,.04);
}
.media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  background: rgba(0,0,0,.08);
}
.badge{
  position:absolute;
  top:10px; left:10px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight:900;
  color:#fff;
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.35);
}
.badge.green{ background: rgba(32, 166, 94, .95); }
.badge.orange{ background: rgba(255, 140, 0, .95); }
.badge.red{ background: rgba(230, 64, 64, .95); }

.body{ padding: 12px 14px 14px; }
.city{ font-weight:900; font-size: 20px; margin: 2px 0 4px; }
.desc{ color: var(--muted); font-weight:600; margin: 0 0 12px; font-size: 13px; }
.actions{ display:flex; gap:10px; align-items:center; }
.btn-mini{
  flex:1;
  background: linear-gradient(180deg, var(--blue), var(--blue2));
  color:#fff;
  border:0;
  border-radius: 10px;
  padding: 10px 10px;
  font-weight:900;
  cursor:pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,.12);
}
.link-mini{
  background: rgba(17,24,39,.06);
  border: 1px solid rgba(17,24,39,.10);
  border-radius: 10px;
  padding: 10px 10px;
  font-weight:800;
  color: #111827;
  cursor:pointer;
  white-space:nowrap;
}

/* Section 2 */
.section2{
  background: radial-gradient(1000px 500px at 10% 0%, rgba(255,138,0,.22), transparent 55%),
              radial-gradient(900px 500px at 90% 0%, rgba(30,99,255,.20), transparent 58%),
              linear-gradient(180deg, #0b1220, #070c16);
  padding: 28px 0 46px;
}

.panel{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 18px;
  box-shadow: var(--shadow);
  color: var(--text);
  padding: 22px;
  overflow:hidden;
  position:relative;
}
.panel::before{
  content:"";
  position:absolute;
  left:-40px; right:-40px; top:-70px;
  height:160px;
  background: linear-gradient(135deg, rgba(255,138,0,.26), rgba(30,99,255,.20));
  transform: rotate(-2deg);
}
.panel-inner{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 18px;
  align-items:center;
}
.big{
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 1000;
  margin: 0 0 10px;
}
.big strong{
  color:#ff7a00;
  text-shadow: 0 8px 24px rgba(255,122,0,.18);
}
.checks{
  display:grid;
  gap: 10px;
  margin: 10px 0 18px;
  padding:0;
  list-style:none;
}
.checks li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-weight:800;
  color:#0f172a;
}
.tick{
  width:22px;height:22px;border-radius:6px;
  background: rgba(255,138,0,.18);
  display:grid;place-items:center;
  border: 1px solid rgba(255,138,0,.35);
  flex: 0 0 22px;
  margin-top: 1px;
}
.tick::before{ content:"✓"; font-weight:1000; color:#ff7a00; }

.btn-wide{
  display:inline-block;
  margin-top: 6px;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 1000;
  border:0;
  cursor:pointer;
  color:#1b0f00;
  background: linear-gradient(180deg, var(--orange), #ff6a00);
  box-shadow: var(--shadow2);
  text-transform:uppercase;
  letter-spacing:.4px;
}

/* mock images */
.mock-grid{ display:grid; gap: 12px; }
.ph{
  border-radius: 16px;
  overflow:hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(0,0,0,.03);
}
.ph img{
  width:100%;
  height: 220px;
  object-fit:cover;
  display:block;
}

.footer{
  padding: 18px 0 0;
  color: rgba(255,255,255,.72);
  text-align:center;
  font-weight:700;
  font-size: 13px;
}

@media (max-width: 900px){
  .cards{ grid-template-columns: 1fr; }
  .panel-inner{ grid-template-columns: 1fr; }
  .ph img{ height: 200px; }
}


/* ===== Ajustes: fundo azul claro (cor do guia) ===== */
body{
  background: linear-gradient(180deg, #e7f1ff, #cfe4ff 35%, #b9d8ff);
  color: #ffffff;
}

/* Seção 2 com azul claro */
.section2{
  background: linear-gradient(180deg, #d9ecff, #b9d8ff);
}

/* Botões como links */
a.linkbtn, a.btn-mini.linkbtn, a.link-mini.linkbtn2{
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

/* Botão "ghost" para abrir vídeo */
.btn.ghost{
  background: rgba(255,255,255,.18);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.35);
}
.btn.ghost:hover{
  filter: brightness(1.08);
}

/* Texto explicativo */
.explain{
  margin: 10px 0 10px;
  color: #0f172a;
  font-weight: 800;
  line-height: 1.35;
}
.explain strong{ color: #ff7a00; }

/* Modal do vídeo */
.modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.modal.show{ display:block; }
.modal-overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(2px);
}
.modal-dialog{
  position:relative;
  width: min(920px, 92vw);
  margin: 6vh auto;
  background: rgba(255,255,255,.98);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.25);
}
.modal-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(255,138,0,.20), rgba(30,99,255,.12));
}
.modal-title{
  color:#0f172a;
  font-weight: 1000;
  letter-spacing:.2px;
}
.modal-close{
  border:0;
  cursor:pointer;
  font-size: 18px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(15,23,42,.08);
  color:#0f172a;
  font-weight: 1000;
}
.modal-close:hover{ filter: brightness(0.95); }
.modal-body{
  padding: 14px 16px 18px;
}
.video-wrap{
  width:100%;
  aspect-ratio: 16/9;
  background: #0b1220;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(15,23,42,.12);
}
.video-wrap iframe{
  width:100%;
  height:100%;
  border:0;
}
.modal-note{
  margin: 10px 2px 0;
  color:#475569;
  font-weight: 700;
  font-size: 13px;
}

/* Centraliza card único */
.cards{
  grid-template-columns: min(360px, 92vw);
  justify-content: center;
}

/* Rodapé em fundo claro */
.footer{
  color: rgba(15,23,42,.65);
}


/* ===== Popups (Info e Contratar) ===== */
.richtext p{
  margin: 0 0 10px;
  color:#0f172a;
  font-weight: 800;
  line-height: 1.45;
}
.richtext strong{ color:#ff7a00; }

.tipbox{
  margin-top: 12px;
  border-radius: 14px;
  padding: 12px 12px;
  border: 1px solid rgba(15,23,42,.12);
  background: linear-gradient(180deg, rgba(30,99,255,.08), rgba(255,138,0,.06));
}
.tip-title{
  font-weight: 1000;
  color:#0f172a;
  margin-bottom: 6px;
}
.tiplist{
  margin:0;
  padding-left: 18px;
  color:#0f172a;
  font-weight: 800;
}
.tiplist li{ margin: 6px 0; }

.grid2{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 14px;
}
@media (max-width: 900px){
  .grid2{ grid-template-columns: 1fr; }
}

.cardbox{
  border-radius: 16px;
  padding: 12px 12px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.98);
}

.kicker{
  font-weight: 1000;
  color:#0f172a;
  margin: 2px 0 8px;
}

.feat{
  margin:0;
  padding-left: 18px;
  color:#0f172a;
  font-weight: 800;
  line-height: 1.35;
}
.feat li{ margin: 7px 0; }
.feat strong{ color:#ff7a00; }

.promo{
  margin-top: 10px;
  border-radius: 14px;
  padding: 12px 12px;
  border: 1px solid rgba(255,138,0,.25);
  background: linear-gradient(180deg, rgba(255,138,0,.16), rgba(255,255,255,.9));
}
.promo-title{
  font-weight: 1000;
  color:#ff7a00;
  margin-bottom: 6px;
}
.promo-line{
  font-weight: 1000;
  color:#0f172a;
}
.promo-line.small{
  font-weight: 900;
  color:#334155;
  margin-top: 2px;
}

.payrow{
  display:grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-bottom: 10px;
}
.label{
  font-weight: 900;
  color:#334155;
  font-size: 13px;
}
.value{
  font-weight: 1000;
  color:#0f172a;
  font-size: 15px;
}
.mini{
  width: fit-content;
  border:0;
  cursor:pointer;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 1000;
  background: rgba(30,99,255,.12);
  color:#0f172a;
  border: 1px solid rgba(30,99,255,.18);
}
.mini:hover{ filter: brightness(0.98); }

.qrbox{
  border-radius: 14px;
  border: 1px dashed rgba(15,23,42,.22);
  background: rgba(15,23,42,.03);
  padding: 12px;
  margin: 8px 0 12px;
}
.qrph{
  height: 180px;
  display:grid;
  place-items:center;
  color: rgba(15,23,42,.55);
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .4px;
  background:
    linear-gradient(135deg, rgba(30,99,255,.10), rgba(255,138,0,.10)),
    repeating-linear-gradient(45deg, rgba(0,0,0,.04) 0px, rgba(0,0,0,.04) 12px, rgba(255,255,255,.06) 12px, rgba(255,255,255,.06) 24px);
  border-radius: 12px;
}

.pixarea{
  width:100%;
  min-height: 92px;
  resize: none;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.12);
  padding: 10px 10px;
  font-weight: 800;
  color:#0f172a;
  background: rgba(15,23,42,.03);
}

.btnrow{
  display:flex;
  gap:10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.btnwide2{
  flex: 1 1 220px;
  border:0;
  cursor:pointer;
  border-radius: 12px;
  padding: 12px 12px;
  font-weight: 1000;
  background: linear-gradient(180deg, #ff8a00, #ff6a00);
  color:#1b0f00;
}
.btnwide2.ghost2{
  background: rgba(15,23,42,.08);
  color:#0f172a;
  border: 1px solid rgba(15,23,42,.12);
}
.btnwide2:hover{ filter: brightness(0.98); }

.help{
  margin: 8px 0 0;
  color:#475569;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.35;
}

.sendbox{
  margin-top: 12px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(15,23,42,.03);
  padding: 12px 12px;
}
.sendtitle{
  font-weight: 1000;
  color:#0f172a;
  margin-bottom: 6px;
}
.whats{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 1000;
  text-decoration:none;
  color:#ffffff;
  background: linear-gradient(180deg, #22c55e, #16a34a);
  box-shadow: 0 10px 20px rgba(0,0,0,.12);
}
.whats:hover{ filter: brightness(1.02); }

/* Botão "Quero Guia" como button */
.link-mini.linkbtn2{
  border: 1px solid rgba(17,24,39,.10);
}

/* ===== Ajuste para caber tudo no popup ===== */
.modal-dialog{
  margin: 3vh auto !important;
  max-height: 92vh;
}
.modal-body{
  overflow: auto;
  max-height: calc(92vh - 64px);
}
.modal-dialog-video{
  max-width: 920px;
}
.qrimg{
  width: 100%;
  height: auto;
  display:block;
  border-radius: 12px;
}
.contactline{
  margin: 6px 0 10px;
  font-weight: 900;
  color:#0f172a;
}
.contactline a{ color:#1e63ff; text-decoration:none; }
.contactline a:hover{ text-decoration:underline; }
.promo-note{
  margin-top: 6px;
  font-weight: 900;
  color:#334155;
}
.price{
  font-weight: 1000;
  color:#0f172a;
}
.hero-contact{
  margin: 6px auto 0;
  text-align:center;
  font-weight: 900;
  color: rgba(255,255,255,.92);
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.hero-contact a{ color:#ffd36d; text-decoration:none; }
.hero-contact a:hover{ text-decoration:underline; }

/* ===== Botão flutuante WhatsApp ===== */
.whats-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #22c55e, #16a34a);
  box-shadow: 0 18px 30px rgba(0,0,0,.22);
  z-index: 99999;
  border: 1px solid rgba(255,255,255,.25);
}
.whats-float:hover{ filter: brightness(1.03); }
.whats-icon{
  width: 28px;
  height: 28px;
  display:block;
  background: #fff;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="black" d="M19.11 17.59c-.27-.14-1.62-.8-1.87-.89-.25-.09-.43-.14-.61.14-.18.27-.7.89-.86 1.07-.16.18-.32.2-.59.07-.27-.14-1.14-.42-2.17-1.34-.8-.71-1.34-1.58-1.5-1.85-.16-.27-.02-.41.12-.55.12-.12.27-.32.41-.48.14-.16.18-.27.27-.45.09-.18.05-.34-.02-.48-.07-.14-.61-1.47-.84-2.01-.22-.53-.45-.46-.61-.46h-.52c-.18 0-.48.07-.73.34-.25.27-.96.93-.96 2.27 0 1.34.98 2.64 1.12 2.82.14.18 1.93 2.94 4.68 4.12.65.28 1.16.45 1.55.58.65.21 1.24.18 1.7.11.52-.08 1.62-.66 1.85-1.3.23-.64.23-1.18.16-1.3-.07-.12-.25-.2-.52-.34zM16 3C8.83 3 3 8.83 3 16c0 2.3.6 4.54 1.74 6.52L3.6 29l6.66-1.1A12.95 12.95 0 0 0 16 29c7.17 0 13-5.83 13-13S23.17 3 16 3zm0 23.5c-2.05 0-4.05-.55-5.78-1.6l-.41-.24-3.95.65.68-3.85-.26-.4A10.44 10.44 0 0 1 5.5 16C5.5 10.42 10.42 5.5 16 5.5S26.5 10.42 26.5 16 21.58 26.5 16 26.5z"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="black" d="M19.11 17.59c-.27-.14-1.62-.8-1.87-.89-.25-.09-.43-.14-.61.14-.18.27-.7.89-.86 1.07-.16.18-.32.2-.59.07-.27-.14-1.14-.42-2.17-1.34-.8-.71-1.34-1.58-1.5-1.85-.16-.27-.02-.41.12-.55.12-.12.27-.32.41-.48.14-.16.18-.27.27-.45.09-.18.05-.34-.02-.48-.07-.14-.61-1.47-.84-2.01-.22-.53-.45-.46-.61-.46h-.52c-.18 0-.48.07-.73.34-.25.27-.96.93-.96 2.27 0 1.34.98 2.64 1.12 2.82.14.18 1.93 2.94 4.68 4.12.65.28 1.16.45 1.55.58.65.21 1.24.18 1.7.11.52-.08 1.62-.66 1.85-1.3.23-.64.23-1.18.16-1.3-.07-.12-.25-.2-.52-.34zM16 3C8.83 3 3 8.83 3 16c0 2.3.6 4.54 1.74 6.52L3.6 29l6.66-1.1A12.95 12.95 0 0 0 16 29c7.17 0 13-5.83 13-13S23.17 3 16 3zm0 23.5c-2.05 0-4.05-.55-5.78-1.6l-.41-.24-3.95.65.68-3.85-.26-.4A10.44 10.44 0 0 1 5.5 16C5.5 10.42 10.42 5.5 16 5.5S26.5 10.42 26.5 16 21.58 26.5 16 26.5z"/></svg>') center/contain no-repeat;
}

/* ===== Demonstração (cards com botão azul) ===== */
.demo{
  margin: 14px auto 10px;
  width: min(1120px, 92vw);
  padding: 12px 12px 4px;
}
.demo-title{
  text-align:center;
  color:#0f172a;
  font-weight: 1000;
  margin: 0 0 12px;
  text-shadow: none;
}
.demo-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 980px){
  .demo-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .demo-grid{ grid-template-columns: 1fr; }
}
.demo-card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 14px 26px rgba(0,0,0,.10);
}
.demo-head{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  margin-bottom: 10px;
}
.demo-ico{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(30,99,255,.18), rgba(255,138,0,.12));
  border: 1px solid rgba(30,99,255,.18);
  position: relative;
}
.demo-ico::after{
  content:'';
  position:absolute;
  inset: 7px;
  border-radius: 10px;
  background: rgba(30,99,255,.35);
}
.demo-h{
  font-weight: 1000;
  color:#0f172a;
  margin-bottom: 2px;
}
.demo-p{
  font-weight: 800;
  color:#475569;
  font-size: 12.5px;
  line-height: 1.25;
}
.demo-btn{
  width:100%;
  border:0;
  cursor:pointer;
  border-radius: 12px;
  padding: 12px 12px;
  font-weight: 1000;
  color:#ffffff;
  background: linear-gradient(180deg, #1e63ff, #1447c7);
  box-shadow: 0 10px 18px rgba(30,99,255,.22);
}
.demo-btn:hover{ filter: brightness(1.03); }

.preview{
  display:flex;
  justify-content:center;
}
.preview .shot{
  width: min(520px, 92vw);
}

/* ===== Demo bloco estilo da imagem ===== */
.demo{
  position: relative;
  margin-top: 6px;
}
.demo-next{
  position:absolute;
  right: 10px;
  top: 8px;
  background: rgba(148,163,184,.35);
  color:#0f172a;
  font-weight: 1000;
  font-size: 12px;
  padding: 7px 12px;
  border-radius: 10px;
  border: 1px solid rgba(15,23,42,.10);
  backdrop-filter: blur(3px);
}
.demo-title{
  font-size: 26px;
  line-height: 1.1;
  margin: 6px 0 14px;
}
.demo-card{
  border-radius: 18px;
  padding: 14px 14px 12px;
}
.demo-ico{
  width: 40px;
  height: 40px;
  border-radius: 14px;
}
.demo-ico::after{
  inset: 9px;
  border-radius: 12px;
}
.demo-btn{
  border-radius: 14px;
  padding: 13px 12px;
  font-size: 14px;
}



/* ===== HERO: FUNDO + OVERLAY (melhora leitura do texto) ===== */
.hero{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.60) 0%,
    rgba(0,0,0,0.55) 45%,
    rgba(0,0,0,0.65) 100%);
}

/* garante que o fundo fique atrás do overlay */
.hero-bg{ z-index:0; }

/* conteúdo acima do overlay */
.hero .wrap{ position:relative; z-index:2; }

