/* ====== Variables (ajusta a tu marca) ====== */
html, body {
  background-color: #ffffff !important;
  color: #1a1a1a !important;
}

:root {
  color-scheme: only light;
}

/* ====== Hero ====== */
.hero-gestoria {
  background-image: url(/imgs/calm-bg.jpg);
  background-size: cover;
  background-position: bottom;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.hero-gestoria .hero-eyebrow {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #4f5b66;
  margin-bottom: 1rem;
}
.hero-gestoria .hero-title {
  color: #00526A;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: clamp(2.2rem, 4vw + 1rem, 3rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero-gestoria .hero-subtitle {
  color: #4f5b66;
  font-size: clamp(1.05rem, 1vw + 0.8rem, 1.35rem);
  margin-bottom: 2rem;
}
.hero-gestoria .buttons {
  gap: 1rem;
}
.hero-gestoria .button.is-primary {
  margin-top: 3%;
  background-color: #00526A;
  border-color: #00526A;
  border-radius: 12px;
  padding-inline: 1.25rem;
  color: #ECECEC;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.hero-gestoria .button.is-primary:hover {
  filter: brightness(1.3);
}
.hero-gestoria .button.is-outlined {
  border-radius: 12px;
  padding-inline: 1.25rem;
  color: #00526A;
  border-color: rgba(15, 46, 58, 0.35);
  margin-top: 3%;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.hero-gestoria .button.is-outlined:hover {
  border-color: #47d7ac;
  background: transparent;
  color: #47d7ac;
}
.hero-gestoria .hero-illustration {
  display: flex;
  flex-direction: column-reverse;
  place-items: center;
}
.hero-gestoria .hero-illustration img {
  max-width: min(660px, 100%);
  width: 100%;
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.08));
}

/* ====== Responsive ====== */
@media (max-width: 1023px) {
  .hero-gestoria {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .hero-gestoria .buttons {
    justify-content: flex-start;
  }
  .hero-gestoria .hero-illustration img {
    max-width: 480px;
    margin-top: -15%;
  }
}
@media (max-width: 768px) {
  .hero-gestoria .buttons {
    flex-wrap: wrap;
  }
}/*# sourceMappingURL=hero.css.map */