/* =========================
   AREA DO CLIENTE - CSS NOVO
   ========================= */

.ac-hero{
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 100px);
  padding: 70px 0;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.08) 0%, transparent 22%),
    radial-gradient(circle at 85% 25%, rgba(255,255,255,.05) 0%, transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(255,255,255,.04) 0%, transparent 35%),
    linear-gradient(135deg, #0f172a 0%, #16243f 38%, var(--cor-site-2) 100%);
}

/* BG + overlay */
.ac-hero__bg{
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(8, 15, 30, .45), rgba(8, 15, 30, .45)), linear-gradient(135deg, #1a346c 0%, #183871 55%, #1e3a5f 100%);
  transform: scale(1.03);
}

.ac-hero__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255,255,255,.02), rgba(0,0,0,.10)),
    radial-gradient(circle at top left, rgba(255,255,255,.10), transparent 28%);
}

.ac-hero__texture{
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.22) 0 1px, transparent 2px),
    radial-gradient(circle at 60% 70%, rgba(255,255,255,.14) 0 1px, transparent 2px),
    radial-gradient(circle at 80% 40%, rgba(255,255,255,.10) 0 1px, transparent 2px);
  background-size: 22px 22px, 28px 28px, 34px 34px;
  pointer-events: none;
}

.ac-hero::before{
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 65%);
  filter: blur(10px);
  pointer-events: none;
}

.ac-hero::after{
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  bottom: -140px;
  left: -80px;
  background: radial-gradient(circle, rgba(255,255,255,.10) 0%, transparent 65%);
  filter: blur(12px);
  pointer-events: none;
}

.ac-hero .container{
  position: relative;
  z-index: 2;
}

.ac-hero__grid{
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

/* painel principal */
.ac-hero__left{
  position: relative;
  max-width: 1180px;
  padding: 38px;
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.35);
  box-shadow:
    0 30px 70px rgba(0,0,0,.20),
    inset 0 1px 0 rgba(255,255,255,.45);
  backdrop-filter: blur(14px);
}

/* LEFT */
.ac-hero__kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 14px;
  color: #fff;
  background: var(--cor-site-1);
  border: 1px solid rgba(255,255,255,.20);
  margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
}

.ac-hero__title{
  margin: 0 0 12px;
  color: #13213a;
  font-weight: 400;
  font-size: 2.9rem;
  line-height: 1.08;
  letter-spacing: -.6px;
  max-width: 760px;
}

.ac-hero__brand{
  display: inline-block;
  color: var(--cor-site-1);
  font-weight: 900;
}

.ac-hero__subtitle{
  margin: 0 0 24px;
  color: #334155;
  font-size: 16px;
  line-height: 1.75;
  max-width: 760px;
}

/* cards */
.ac-hero__cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.ac-card{
  display: grid;
  grid-template-columns: 52px 1fr 24px;
  gap: 14px;
  align-items: center;
  min-height: 96px;
  padding: 16px;
  border-radius: 7px;
  text-decoration: none;
  background: var(--cor-site-1);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 16px 34px rgba(13, 38, 76, .18);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    filter .22s ease;
}

.ac-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 24px 42px rgba(13, 38, 76, .24);
  filter: brightness(1.03);
}

.ac-card__icon{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cor-site-1);
  font-size: 18px;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.ac-card__body strong{
  display: block;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 4px;
}

.ac-card__body span{
  display: block;
  color: rgba(255,255,255,.90);
  font-size: 13px;
  line-height: 1.4;
}

.ac-card__arrow{
  color: rgba(255,255,255,.95);
  display: flex;
  justify-content: flex-end;
  font-size: 16px;
}

/* buttons */
.ac-hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ac-btn{
  height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    opacity .18s ease;
  white-space: nowrap;
}

.ac-btn:hover{
  transform: translateY(-2px);
}

.ac-btn--primary{
  color: #fff;
  background: var(--cor-site-1);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 16px 34px rgba(13, 38, 76, .22);
}

.ac-btn--primary:hover, .ac-btn--primary:focus {
  color: #fff !important;
}

.ac-btn--ghost{
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
}

.footer-avancado.footer-v2 {
  margin-top:0 !important;
}

.ac-btn--ghost:hover{
  border-color: rgba(255,255,255,.34);
}

/* responsive */
@media (max-width: 1199px){
  .ac-hero__cards{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px){
  .ac-hero{
    min-height: auto;
    padding: 50px 0;
  }

  .ac-hero__left{
    padding: 28px 22px;
    border-radius: 22px;
  }

  .ac-hero__title{
    font-size: 2.2rem;
  }

  .ac-hero__cards{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px){
  .ac-hero__title{
    font-size: 1.8rem;
    line-height: 1.12;
  }

  .ac-hero__subtitle{
    font-size: 15px;
  }

  .ac-card{
    grid-template-columns: 46px 1fr 18px;
    min-height: auto;
    padding: 14px;
  }

  .ac-card__icon{
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 16px;
  }

  .ac-card__body strong{
    font-size: 16px;
  }

  .ac-btn{
    width: 100%;
  }
}