/* =========================================
   HERO DESKTOP — BANCO SOL FINAL
========================================= */

.hero-mobile-slider{
  display:none !important;
}

.hero-slider{
  position:relative;
  height:760px !important;
  overflow:visible;
  background:#000;
  margin-bottom:70px;
}

.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  background-size:cover;
  background-position:center right;
  background-repeat:no-repeat;
  transition:opacity .8s ease, visibility .8s ease;
  pointer-events:none;
}

.hero-slide.active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

/* DEGRADÉ APROVADO */

.hero-slide::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
  linear-gradient(
    90deg,
    rgba(245,180,0,.85) 0%,
    rgba(245,180,0,.50) 35%,
    rgba(255,255,255,.08) 68%
  );
}

.hero-bg-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

.hero-slide .container{
  position:relative;
  z-index:3;
  height:100%;
  display:flex;
  align-items:flex-start !important;
  padding-top:120px;
}

/* TEXTO */

.hero-text{
  max-width:650px;
  color:#fff;
  animation:heroTextUp .85s ease both;
}

.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:16px;
  color:#fff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
}

.hero-kicker::before{
  content:"";
  width:34px;
  height:2px;
  background:#fff;
  border-radius:99px;
}

.hero-text h1{
  color:#fff !important;
  font-size:46px !important;
  line-height:1.20 !important;
  font-weight:800 !important;
  margin:0 0 14px;
  letter-spacing:-1px;
  text-shadow:0 10px 35px rgba(0,0,0,.30);
}

.hero-text h1 strong{
  color:#fff !important;
  font-size:50px !important;
  font-weight:900 !important;
}

.hero-text h1::after{
  content:"";
  display:block;
  width:70px;
  height:4px;
  background:#fff;
  border-radius:999px;
  margin:18px 0 22px;
}

.hero-text p{
  max-width:500px;
  color:#fff !important;
  font-size:18px !important;
  line-height:1.6;
  font-weight:500 !important;
  margin:0;
  text-shadow:0 5px 18px rgba(0,0,0,.30);
}

/* BOTÕES */

.hero-actions{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:30px;
}

.btn-hero,
.btn-hero-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:13px 26px;
  border-radius:999px;
  font-size:15px;
  font-weight:800;
  text-decoration:none;
  transition:.25s ease;
}

.btn-hero{
  background:#f5b400;
  color:#111 !important;
  border:2px solid #f5b400;
}

.btn-hero:hover{
  background:#111;
  border-color:#111;
  color:#fff !important;
  transform:translateY(-3px);
}

.btn-hero-secondary{
  background:transparent;
  color:#fff !important;
  border:2px solid #fff;
}

.btn-hero-secondary:hover{
  background:#fff;
  color:#111 !important;
  transform:translateY(-3px);
}

/* SETAS */

.hero-arrow{
  position:absolute;
  top:46%;
  transform:translateY(-50%);
  z-index:9999;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.60);
  background:rgba(0,0,0,.35);
  color:#fff;
  font-size:38px;
  line-height:1;
  cursor:pointer;
  transition:.25s ease;
}

.hero-arrow:hover{
  background:#fff;
  color:#111;
}

.hero-prev{
  left:24px;
}

.hero-next{
  right:24px;
}

/* DOTS */

.hero-dots{
  position:absolute;
  left:50%;
  bottom:132px;
  transform:translateX(-50%);
  z-index:45;
  display:flex;
  gap:8px;
}

.hero-dots button{
  width:9px;
  height:9px;
  border-radius:999px;
  border:0;
  background:rgba(255,255,255,.75);
  cursor:pointer;
  padding:0;
  transition:.25s ease;
}

.hero-dots button.active{
  width:32px;
  background:#f5b400;
}

/* TRUST BAR */

.hero-trust-bar{
  position:absolute;
  left:50%;
  bottom:-52px;
  z-index:42;
  transform:translateX(-50%);
  width:min(1120px, calc(100% - 80px));
  min-height:112px;
  background:rgba(255,255,255,.97);
  border-radius:20px;
  box-shadow:0 18px 55px rgba(0,0,0,.18);
  display:grid;
  grid-template-columns:repeat(4,1fr);
  overflow:hidden;
}

.hero-trust-item{
  position:relative;
  padding:26px 32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.hero-trust-item:not(:last-child)::after{
  content:"";
  position:absolute;
  right:0;
  top:26px;
  bottom:26px;
  width:1px;
  background:rgba(0,0,0,.10);
}

.hero-trust-item strong{
  color:#111;
  font-size:42px;
  line-height:1;
  font-weight:900;
}

.hero-trust-item span{
  margin-top:8px;
  color:#555;
  font-size:15px;
  font-weight:700;
}

/* WAVE */

.hero-wave{
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  z-index:35;
  height:92px;
}

.hero-wave svg{
  width:100%;
  height:100%;
  display:block;
}

.hero-wave path{
  fill:#fffaf0;
}

@keyframes heroTextUp{
  from{
    opacity:0;
    transform:translateY(25px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}