.elementor-34449 .elementor-element.elementor-element-423bc10a{--display:flex;}.elementor-34449 .elementor-element.elementor-element-32eb1b5{margin:040px 0px -40px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for shortcode, class: .elementor-element-6738bba2 */.botones-etiquetas {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin: 30px 0;
    justify-items: center;
}

.boton-etiqueta {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(195,147,91);
    color: #fff;
    text-align: center;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px; /* menos redondeado */
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    min-height: 60px; /* altura mínima uniforme */
    height: 100%;     /* fuerza a llenar la celda */
    width: 100%;      /* llena el ancho del grid */
    box-sizing: border-box;
    text-wrap: balance;
}

.boton-etiqueta:hover {
    background-color: rgb(169,127,79);
    transform: scale(1.03);
}

/* Responsive: 2 columnas en pantallas pequeñas */
@media (max-width: 768px) {
    .botones-etiquetas {
        grid-template-columns: repeat(2, 1fr);
    }

    .boton-etiqueta {
        font-size: 16px;
        padding: 16px 18px;
    }
}/* End custom CSS */