/* ==== HERO ==== */
.hero-container {
  height: calc(100dvh - var(--header-height));
  overflow: hidden;
  max-height: calc(100dvh - var(--header-height));
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 16px;
  padding: 24px 0 32px;
  align-items: stretch;
  height: 100%;
  max-height: 100%;
}

/* BLOCO ESQUERDO */
.hero-left {
  background: var(--bg);
  border: 1.5px solid var(--hover);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 36px;
  height: 100%;
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--hover2) 1px, transparent 1px),
    linear-gradient(90deg, var(--hover2) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.18;
  pointer-events: none;
}

.hero-left h1 {
  font-family: var(--font-bold);
  /* Aumentado o máximo para 68px e a escala para 5vw no desktop */
  font-size: clamp(32px, 5vw, 68px);
  font-weight: 900;
  color: var(--cr);
  /* Line-height mais ajustado para títulos grandes */
  line-height: 1.1;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.hero-left h1 span {
  color: var(--hover);
  /* Força o destaque para uma nova linha no desktop, aumentando o impacto */
  display: block;
  margin-top: 8px;
}

/* BLOCO DIREITO */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  min-height: 0;
}

.hero-desc {
  background: var(--bg);
  border: 1px solid var(--bg2);
  border-radius: 20px;
  padding: 36px 24px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-desc img {
  max-width: 50px;
  max-height: 50px;
}
.hero-desc p {
  font-family: var(--font-main);
  font-size: clamp(16px, 2vw, 22px);
  color: var(--cr1);
  line-height: 1.7;
  text-align: center;
  max-width: 480px;
}

.hero-desc p strong {
  color: var(--cr);
  font-family: var(--font-bold);
}

/* CTAs */
.hero-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-hero-wpp {
  background: var(--hover);
  color: var(--cr2);
  font-family: var(--font-bold);
  font-weight: 900;
  font-size: 16px;
  padding: 28px 20px;
  border-radius: 18px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.3s;
}

.btn-hero-wpp:hover {
  opacity: 0.85;
}

.btn-hero-wpp img {
  width: 24px;
  height: 24px;
}

.btn-hero-blog {
  background: var(--bg);
  color: var(--cr);
  font-family: var(--font-main);
  font-size: 16px;
  padding: 28px 20px;
  border-radius: 18px;
  border: 1px solid var(--bg2);
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, color 0.3s;
}

.btn-hero-blog:hover {
  border-color: var(--hover);
  color: var(--hover);
}

/* ==== SCROLL INDICATOR ==== */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: auto;
  padding-bottom: 8px;
  z-index: 1;
  width: 100%;
}

.scroll-saiba-mais {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.scroll-label {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--cr1);
  opacity: 0.7;
  font-family: var(--font-main);
}

.scroll-indicator svg {
  animation: bounce 1.4s ease-in-out infinite;
}

.scroll-indicator svg:last-child {
  animation-delay: 0.2s;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(5px);
    opacity: 0.5;
  }
}