/******* Do not edit this file *******
Code Snippets Manager
Saved: Sep 11 2025 | 10:58:24 */
/* Fondo y color base de todos los botones GenerateBlocks */
a[class^="gb-text-"], button[class^="gb-text-"] {
  background: #000 !important;
  color: #f1d318 !important;
  /* color heredado por texto e icono */
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
}
/* Texto dentro de los botones */
a[class^="gb-text-"] .gb-text, a[class^="gb-text-"] .gb-text strong, button[class^="gb-text-"] .gb-text, button[class^="gb-text-"] .gb-text strong {
  color: inherit !important;
}
/* Iconos dentro de los botones */
a[class^="gb-text-"] svg, a[class^="gb-text-"] path, button[class^="gb-text-"] svg, button[class^="gb-text-"] path {
  color: inherit !important;
  fill: currentColor !important;
}
body a.gb-text, body a.gb-text .gb-text, body a.gb-text .gb-text span {
  color: #f1d318 !important;
}
.boton {
  background: var(--negro);
  color: var(--secundario);
  padding: 1rem 2rem;
  font-size: 110% !important;
  font-weight: bold;
  text-align: center;
  text-transform: none;
  border-radius: 12px;
  display: inline-block;
  transition: all 0.2s ease-in-out;
  box-shadow: 1px 1px 1px 1px var(--secundario);
}
.boton:hover {
  background: var(--negro);
  color: var(--secundario);
  font-weight: bold;
  text-transform: none;
  box-shadow: 4px 4px 4px 2px var(--secundario);
  transform: scale3d(1.05, 1.05, 1.05);
}
