/* Campo con borde verde */
.green-border {
  border: 1px solid #8DC63F !important;
  background-color: #fff;
}

.green-border:focus {
  border-color: #76b738 !important;
  outline: none;
  box-shadow: 0 0 0 0.1rem rgba(141, 198, 63, 0.2);
}

/* Botón estilo SolidMD pero con color institucional */
.btn-outline-green {
  background-color: transparent;
  color: #1e1e1e;
  border: 2px solid #1e1e1e;
  border-radius: 30px;
  padding: 10px 30px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-outline-green:hover {
  background-color: #8DC63F;
  color: #fff;
  border-color: #8DC63F;
}

/* Alinear íconos */
.contact-list li i {
  min-width: 22px;
  text-align: center;
  color: #8DC63F;
}

a.email-link {
    color: inherit; /* mantiene el color original si no se sobreescribe */
    text-decoration: none;
    transition: color 0.3s ease;
}

a.email-link:hover {
    color: #8DC63F; /* tu verde institucional */
}
