/**
 * HIGHLIGHT-2 — Link branco com underline para fundos escuros
 *
 * Reservado (dark theme). CSS implementado para uso futuro.
 *
 * text:      #fff
 * font:      Inter (Botao Inter, ID 7a95f7c)
 * underline: 2px branco via ::after → hover 4px
 */

/* Tipografia: highlight-2 usa "Botao Inter" */
.elementor-element .vin-button.highlight-2 {
  font-family: var(--e-global-typography-7a95f7c-font-family, 'Inter', sans-serif);
  font-size: var(--e-global-typography-7a95f7c-font-size, 1.4rem);
  font-weight: var(--e-global-typography-7a95f7c-font-weight, 400);
  line-height: var(--e-global-typography-7a95f7c-line-height, 1.3em);
}

.elementor-element .vin-button.highlight-2 {
  position: relative;
  background-color: transparent;
  color: #fff;
  padding: 10px 0;
}

.elementor-element .vin-button.highlight-2::after {
  content: "";
  background-color: #fff;
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.elementor-element .vin-button.highlight-2 .elementor-icon svg,
.elementor-element .vin-button.highlight-2 .elementor-icon svg path {
  fill: #fff;
}

.elementor-element .vin-button.highlight-2 i {
  color: #fff;
}

.elementor-element .vin-button.highlight-2:hover::after {
  height: 4px;
  bottom: -2px;
}

.elementor-element .vin-button.highlight-2:focus {
  box-shadow: 0 0 0 2px var(--e-global-color-2471422);
}
