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

.ac-hero {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 97px);
  display: flex;
  align-items: center;
}

/* BG + overlay (estilo premium) */
.ac-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(950px 420px at 18% 45%, rgba(1, 80, 149, .26), transparent 62%),
    linear-gradient(180deg, rgba(2, 8, 25, .82) 0%, rgba(2, 8, 25, .60) 56%, rgba(2, 8, 25, .88) 100%),
    url("../../img/paginas/area-do-cliente/banner-boleto-ferri-loriggio.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.ac-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .18);
}

.ac-hero__texture {
  position: absolute;
  inset: 0;
  opacity: .10;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .20) 0 1px, transparent 2px),
    radial-gradient(circle at 60% 70%, rgba(255, 255, 255, .12) 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 .container {
  position: relative;
  z-index: 2;
}

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

/* LEFT */
.ac-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  color: rgba(255, 255, 255, .92);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  margin-bottom: 16px;
}

.ac-hero__title {
  margin: 0 0 10px;
  color: #fff;
  font-weight: 450;
  font-size: 2.55rem;
  line-height: 1.12;
  letter-spacing: -.4px;
}

.ac-hero__brand {
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, .70) 25%, var(--cor-site-1, #015095) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.ac-hero__subtitle {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .86);
  font-size: 16px;
  line-height: 1.65;
  max-width: 720px;
}

/* cards */
.ac-hero__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 20px;
  margin-bottom: 16px;
}

.ac-card {
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  gap: 12px;
  align-items: center;
  padding: 12px 12px;
  border-radius: 14px;
  text-decoration: none;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .20);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.ac-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, .26);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .26);
  background: rgba(255, 255, 255, .10);
}

.ac-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(180deg, rgba(1, 80, 149, .55), rgba(0, 0, 0, .10));
  border: 1px solid rgba(255, 255, 255, .12);
}

.ac-card__body strong {
  display: block;
  color: #fff;
  font-weight: 950;
  font-size: 14px;
  margin-bottom: 2px;
}

.ac-card__body span {
  display: block;
  color: rgba(255, 255, 255, .80);
  font-size: 12px;
  line-height: 1.35;
}

.ac-card__arrow {
  color: rgba(255, 255, 255, .85);
  display: flex;
  justify-content: flex-end;
}

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

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

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

.ac-btn--primary {
  color: #fff;
  background: linear-gradient(90deg, var(--cor-site-1, #015095), var(--cor-site-1-2, #014480));
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 14px 30px rgba(1, 80, 149, .22);
}

.ac-btn--primary:hover {
  box-shadow: 0 18px 40px rgba(1, 80, 149, .30);
}

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

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

/* RIGHT: photo card decor */
.ac-hero__right {
  display: flex;
  justify-content: flex-end;
}

/* responsive */
@media (max-width: 992px) {
  .ac-hero {
    padding: 40px 0;
    height: calc(100vh - 60px);
  }

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

  .ac-hero__right {
    justify-content: flex-start;
  }

  .ac-hero__title {
    font-size: 26px;
  }

  .ac-hero__photo {
    max-width: 620px;
  }
}