:root{
  --sol-yellow:#FFD200;
  --sol-yellow-2:#FECB00;
  --sol-black:#111111;
  --sol-muted:#667085;
  --sol-border:#e8e8e8;
  --sol-shadow:0 18px 45px rgba(0,0,0,.08);
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:#f7f8fa;
  color:#111;
}

a{
  text-decoration:none;
}

.sol-home-container{
  width:min(1180px, calc(100% - 32px));
  margin:auto;
}

.sol-home-btn,
.sol-home-btn-outline{
  min-height:44px;
  padding:12px 18px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  transition:.25s ease;
}

.sol-home-btn{
  background:var(--sol-yellow);
  color:#111;
  box-shadow:0 10px 20px rgba(255,210,0,.25);
}

.sol-home-btn-outline{
  background:#fff;
  color:#111;
  border:1px solid #ddd;
}

.sol-home-hero{
  position:relative;
  min-height:520px;
  overflow:hidden;
  background:#fff;
}

.sol-home-hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.98) 0%,
      rgba(255,255,255,.94) 35%,
      rgba(255,255,255,.55) 62%,
      rgba(255,255,255,.20) 100%
    ),
    url('/assets/img/home/hero-banco-sol.jpg') center right/cover no-repeat;
  z-index:1;
}

.sol-home-hero__content{
  position:relative;
  z-index:2;
  min-height:520px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  padding:80px 0;
}

.sol-home-hero__text{
  max-width:520px;
}

.sol-home-kicker{
  display:inline-flex;
  font-size:11px;
  font-weight:900;
  color:#8a6a00;
  text-transform:uppercase;
  letter-spacing:.8px;
  margin-bottom:10px;
}

.sol-home-hero h1{
  font-size:44px;
  line-height:1.08;
  font-weight:900;
  letter-spacing:-1.5px;
  margin:0 0 18px;
  color:#111;
}

.sol-home-hero h1 span{
  color:#d8a800;
}

.sol-home-hero p{
  color:var(--sol-muted);
  font-size:15px;
  line-height:1.7;
  max-width:440px;
  margin:0 0 28px;
}

.sol-home-hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.sol-home-hero__card{
  width:210px;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(12px);
  padding:24px;
  border-radius:22px;
  box-shadow:var(--sol-shadow);
  border:1px solid rgba(255,255,255,.7);
}

.sol-home-hero__card i{
  font-size:34px;
  color:#111;
  margin-bottom:14px;
}

.sol-home-hero__card h4{
  font-size:18px;
  font-weight:900;
  margin:0 0 8px;
}

.sol-home-hero__card p{
  font-size:12px;
  color:#666;
  margin-bottom:12px;
  line-height:1.5;
}

.sol-home-hero__card a{
  font-size:13px;
  font-weight:900;
  color:#9b7800;
}

.sol-home-hero__dots{
  position:absolute;
  left:calc((100% - min(1180px, calc(100% - 32px))) / 2);
  bottom:34px;
  display:flex;
  gap:7px;
  z-index:5;
}

.sol-home-hero__dots button{
  width:9px;
  height:9px;
  border-radius:50%;
  border:0;
  background:#ddd;
  padding:0;
}

.sol-home-hero__dots button.active{
  background:var(--sol-yellow);
  width:24px;
  border-radius:20px;
}

.reveal{
  opacity:1;
  transform:none;
}

@media(max-width:992px){
  .sol-home-hero__card{
    display:none;
  }

  .sol-home-hero h1{
    font-size:36px;
  }
}

@media(max-width:768px){
  .sol-home-hero,
  .sol-home-hero__content{
    min-height:500px;
  }

  .sol-home-hero__bg{
    background:
      linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.82)),
      url('/assets/img/home/hero-banco-sol.jpg') center/cover no-repeat;
  }

  .sol-home-hero h1{
    font-size:31px;
  }
}