.hero {
  position: relative;
  min-height: calc(100vh - var(--site-chrome-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(12, 73, 148, 0.342) 0%, rgba(4, 24, 48, 0.212) 46%, rgba(4, 24, 48, 0.068) 100%),
    url("/src/assets/images/banner_pc.jpg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(21, 168, 232, 0.34), transparent 34%),
    linear-gradient(180deg, rgba(7, 27, 51, 0.04), rgba(7, 27, 51, 0.4));
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 60px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 420px;
  align-items: center;
  gap: 54px;
  padding: 64px 0;
}

.hero-content {
  max-width: 720px;
}


.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.30rem, 5vw, 4.50rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: clamp(1.03rem, 2vw, 1.22rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 16px 42px rgba(11, 116, 209, 0.3);
}

.btn-whatsapp {
  color: var(--white);
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  box-shadow: 0 16px 42px rgba(32, 192, 99, 0.28);
}

.btn-form {
  width: 100%;
  color: var(--white);
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  box-shadow: 0 16px 42px rgba(32, 192, 99, 0.26);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin-top: 34px;
}

.hero-points div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.hero-points strong,
.hero-points span {
  display: block;
}

.hero-points strong {
  font-size: 0.94rem;
}

.hero-points span {
  margin-top: 2px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.76);
}

.hero-form-card {
  position: relative;
  padding: 26px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 28px;
  box-shadow: 0 28px 90px rgba(2, 12, 27, 0.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}


.hero-scope {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 650px;
  margin-top: 24px;
  padding: 15px 16px;
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.hero-scope svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: #b9ebff;
  margin-top: 2px;
}

.hero-scope span {
  display: block;
  font-size: 0.96rem;
  line-height: 1.5;
}

.hero-scope strong {
  color: var(--white);
}


.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 680px;
  margin-top: 24px;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-note svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero-note span:first-child svg {
  color: #80f0b0;
}

.hero-note span:last-child svg {
  color: #ffd0d0;
}


.service-hero { min-height: auto; background: linear-gradient(90deg, rgba(4,24,48,.9), rgba(4,24,48,.55)), url("/src/assets/images/banner_pc.jpg") center / cover no-repeat; }
.service-hero .hero-grid { min-height: 660px; }
.service-hero .hero-content > p { max-width: 700px; }
