.elementor-2951 .elementor-element.elementor-element-411f54c{--display:flex;--margin-top:85px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}/* Start custom CSS for container, class: .elementor-element-411f54c *//* ---- Distribución fluida de botones ---- */

/* Se aplica tanto al generador .ics como a los de WhatsApp */
.button-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: stretch;
  margin-top: 20px;
}

.button-grid button {
  inline-size: 100%;
  max-width: 300px;
  text-align: center;
  white-space: normal;
  padding: 12px 16px;
  border-radius: 12px;
  background: #9E8354;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.button-grid button:hover {
  background: #B99B63;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}

.button-grid button:active {
  background: #7D6941;
}

/* Ajuste para pantallas grandes: 2 o más botones alineados */
@media (min-width: 1000px) {
  .button-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}/* End custom CSS */