/**
 * Biotech Elements - Widgets CSS
 * Estilos adicionais para widgets que precisam de CSS externo
 */

/* Reset básico para widgets */
.biotech-widget * {
    box-sizing: border-box;
}

/* Animações suaves */
.biotech-widget {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Utilitários */
.biotech-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
