:root {
  --hero-gradient: linear-gradient(130deg, rgba(11, 18, 34, 0.92), rgba(16, 24, 44, 0.8));
  --hero-image: url("../img/produtos/servicos.jpg");
  --hero-background-position: center 40%;
  --hero-min-height: clamp(360px, 55vw, 530px);
  --hero-spacing-bottom: clamp(3rem, 6vw, 4.5rem);
  --hero-border-radius: 0px;
  --hero-content-max-width: 720px;
}

.zago-hero {
  position: relative;
  width: 100%;
  min-height: var(--hero-min-height);
  margin-bottom: var(--hero-spacing-bottom);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-image: var(--hero-gradient), var(--hero-image);
  background-size: cover;
  background-position: var(--hero-background-position);
  border-radius: var(--hero-border-radius);
  isolation: isolate;
  transition: transform 0.6s ease;
}

.zago-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 45%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.zago-hero.is-visible::after {
  opacity: 1;
}

.zago-hero__content {
  position: relative;
  margin: 0 auto;
  color: inherit;
  max-width: var(--hero-content-max-width);
}

.zago-hero__content .section-eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.zago-hero__content .section-title {
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.zago-hero__content .section-description {
  color: rgba(255, 255, 255, 0.9);
}

.zago-hero.is-align-center .zago-hero__content .section-description {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.zago-hero.is-align-left .zago-hero__content {
  text-align: left;
}

.zago-hero__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  justify-content: center;
}

.zago-hero.is-align-left .zago-hero__actions {
  justify-content: flex-start;
}

.zago-hero .hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 600;
  padding: 0.95rem 2rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  text-decoration: none;
}

.zago-hero .hero-btn i {
  font-size: 0.95rem;
}

.zago-hero .hero-btn-primary {
  background: linear-gradient(135deg, #f49b45, #ffb167);
  border-color: transparent;
  color: #10182c;
}

.zago-hero .hero-btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ffb167, #ffd19b);
}

.zago-hero .hero-btn-secondary {
  border-color: rgba(255, 255, 255, 0.45);
}

.zago-hero .hero-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.75);
  transform: translateY(-2px);
}

.zago-hero .hero-btn-ghost {
  border-color: transparent;
  color: rgba(255, 255, 255, 0.85);
}

.zago-hero .hero-btn-ghost:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.zago-hero + .container {
  margin-top: clamp(2rem, 4vw, 3rem);
}

@media (max-width: 992px) {
  .zago-hero {
    min-height: clamp(320px, 60vw, 420px);
    margin-bottom: 3rem;
  }

  .zago-hero__actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .zago-hero {
    padding: 3rem 0;
  }

  .zago-hero__actions {
    flex-direction: column;
  }

  .zago-hero .hero-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .zago-hero,
  .zago-hero::after,
  .zago-hero .hero-btn {
    transition: none;
  }
}


