.elementor-3414 .elementor-element.elementor-element-713d163{--display:flex;--min-height:100vh;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-69dd00c *//* === Corrige o alinhamento dos botões e remove o mouse por baixo === */
.hero .scroll-indicator {
  display: none !important; /* remove totalmente o mouse/scroll indicator */
}

.hero .cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
  position: relative;
  z-index: 10;
}

/* Botão principal */
.hero .btn.primary {
  background: #ffffff;
  color: #6b21a8;
  font-weight: 700;
  border-radius: 14px;
  padding: 14px 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero .btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* Botão secundário */
.hero .btn.ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  font-weight: 700;
  border-radius: 14px;
  padding: 14px 32px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Responsivo */
@media (max-width: 768px) {
  .hero .cta-row {
    flex-direction: column;
    gap: 14px;
  }
  .hero .btn.primary,
  .hero .btn.ghost {
    width: 100%;
    max-width: 320px;
  }
}/* End custom CSS */