
/*
 * Estilos para DIAF Catálogo PRO
 * Pensado para sitios industriales / herramientas.
 */

.diaf-catalogo-pro-cta,
.diaf-catalogo-pro-cta-single {
    margin-top: 0.75rem;
}

.diaf-catalogo-pro-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0,0,0,0.18);
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background-color 0.12s ease-out;
    background: #ffcc00; /* amarillo industrial DIAF */
    color: #111111;
}

.diaf-catalogo-pro-btn:hover,
.diaf-catalogo-pro-btn:focus {
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(0,0,0,0.25);
    background: #ffd633;
    color: #111111;
}

.diaf-catalogo-pro-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* versión en tema oscuro */
body.dark-theme .diaf-catalogo-pro-btn {
    background: #ffe066;
    color: #101010;
}

/* botón a ancho completo en móviles */
@media (max-width: 600px) {
    .diaf-catalogo-pro-cta,
    .diaf-catalogo-pro-cta-single {
        text-align: center;
    }
    .diaf-catalogo-pro-btn {
        width: 100%;
    }
}
